1 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-ezmlm-web-1.1.2/root/etc/e-smith/events/actions/ezmlm-update mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/events/actions/ezmlm-update |
2 |
--- smeserver-ezmlm-web-1.1.2/root/etc/e-smith/events/actions/ezmlm-update 2005-10-25 10:42:33.000000000 +1000 |
3 |
+++ mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/events/actions/ezmlm-update 2005-10-25 10:47:44.136167675 +1000 |
4 |
@@ -34,7 +34,7 @@ |
5 |
use Mail::Ezmlm; |
6 |
|
7 |
tie my %conf, 'esmith::config'; |
8 |
-tie my %accounts, 'esmith::config', '/home/e-smith/accounts'; |
9 |
+tie my %accounts, 'esmith::config', '/home/e-smith/db/accounts'; |
10 |
|
11 |
my $event = $ARGV [0]; |
12 |
die "event argument missing." unless defined ($event); |
13 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-ezmlm-web-1.1.2/root/etc/e-smith/templates/var/qmail/users/assign/90mailinglists mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/templates/var/qmail/users/assign/90mailinglists |
14 |
--- smeserver-ezmlm-web-1.1.2/root/etc/e-smith/templates/var/qmail/users/assign/90mailinglists 2001-10-24 17:44:24.000000000 +1000 |
15 |
+++ mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/templates/var/qmail/users/assign/90mailinglists 2005-10-25 10:47:35.432683325 +1000 |
16 |
@@ -8,7 +8,7 @@ |
17 |
# by ~ezmlm/.qmail-listname and ~ezmlm/.qmail-listname-ext. |
18 |
|
19 |
my %accounts; |
20 |
- tie %accounts, 'esmith::config', "/home/e-smith/accounts"; |
21 |
+ tie %accounts, 'esmith::config', "/home/e-smith/db/accounts"; |
22 |
|
23 |
my (undef, undef, $uid, $gid, undef, undef, undef, $dir, undef) |
24 |
= getpwnam("ezmlm"); |
25 |
diff -Nur -x '*.orig' -x '*.rej' smeserver-ezmlm-web-1.1.2/root/etc/e-smith/web/functions/mailinglists mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/web/functions/mailinglists |
26 |
--- smeserver-ezmlm-web-1.1.2/root/etc/e-smith/web/functions/mailinglists 2005-10-25 10:42:33.000000000 +1000 |
27 |
+++ mezzanine_patched_smeserver-ezmlm-web-1.1.2/root/etc/e-smith/web/functions/mailinglists 2005-10-25 10:47:26.099308795 +1000 |
28 |
@@ -69,10 +69,10 @@ |
29 |
tie %conf, 'esmith::config'; |
30 |
|
31 |
my %accounts; |
32 |
-tie %accounts, 'esmith::config', '/home/e-smith/accounts'; |
33 |
+tie %accounts, 'esmith::config', '/home/e-smith/db/accounts'; |
34 |
|
35 |
my %domains; |
36 |
-tie %domains, 'esmith::config', '/home/e-smith/domains'; |
37 |
+tie %domains, 'esmith::config', '/home/e-smith/db/domains'; |
38 |
|
39 |
#------------------------------------------------------------ |
40 |
# examine state parameter and display the appropriate form |