1 |
--- smeserver-qmHandle-1.3.5/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/qmh 2008-07-06 10:48:47.000000000 -0400 |
2 |
+++ smeserver-qmHandle-1.3.5/root/etc/e-smith/locale/fr/etc/e-smith/web/functions/qmh 2012-08-22 00:25:51.000000000 -0400 |
3 |
@@ -55,7 +55,7 @@ |
4 |
</entry> |
5 |
<entry> |
6 |
<base>RESEND_QUEUE</base> |
7 |
- <trans>Voir les nouveaux messages de la file d'attente maintenant (qmail doit ĂȘtre en fonction)</trans> |
8 |
+ <trans>Renvoyer les messages de la file d'attente maintenant (qmail doit ĂȘtre en fonction)</trans> |
9 |
</entry> |
10 |
<entry> |
11 |
<base>DELETE_MSG_TITLEB</base> |
12 |
--- smeserver-qmHandle-1.3.5/root/usr/bin/qmHandle 2008-03-30 14:56:40.000000000 -0400 |
13 |
+++ smeserver-qmHandle-1.3.5/root/usr/bin/qmHandle 2012-08-22 00:30:07.000000000 -0400 |
14 |
@@ -26,8 +26,12 @@ |
15 |
# ### Be sure to uncomment only ONE of each variable declarations ### |
16 |
|
17 |
# For instance, this is if you have DJB's daemontools |
18 |
-my ($stopqmail) = '/usr/local/bin/svc -d /service/qmail'; |
19 |
-my ($startqmail) = '/usr/local/bin/svc -u /service/qmail'; |
20 |
+#my ($stopqmail) = '/usr/bin/svc -d /service/qmail'; |
21 |
+#my ($startqmail) = '/usr/bin/svc -u /service/qmail'; |
22 |
+ |
23 |
+# For SME server 7 and 8 this is now sv instead of svc |
24 |
+my ($stopqmail) = '/usr/local/bin/sv -v down qmail'; |
25 |
+my ($startqmail) = '/usr/local/bin/sv -v up qmail'; |
26 |
|
27 |
# While this is if you have a Debian GNU/Linux with its qmail package |
28 |
#my ($stopqmail) = '/etc/init.d/qmail stop'; |
29 |
@@ -47,7 +51,8 @@ |
30 |
##### |
31 |
# Enter here the system command which returns qmail PID. The following |
32 |
# should work on most Unixes: |
33 |
-my ($pidcmd) = 'pidof qmail-send'; |
34 |
+#my ($pidcmd) = 'pidof qmail-send'; |
35 |
+my ($pidcmd) = '/sbin/pidof qmail-send'; |
36 |
|
37 |
#################### USER CONFIGURATION END #################### |
38 |
|