1 |
diff -up e-smith-email-5.2.0/root/etc/e-smith/db/configuration/defaults/smtpd/Authentication.force_relay e-smith-email-5.2.0/root/etc/e-smith/db/configuration/defaults/smtpd/Authentication |
2 |
--- e-smith-email-5.2.0/root/etc/e-smith/db/configuration/defaults/smtpd/Authentication.force_relay 2005-05-05 09:17:20.000000000 -0600 |
3 |
+++ e-smith-email-5.2.0/root/etc/e-smith/db/configuration/defaults/smtpd/Authentication 2010-10-04 10:32:17.000000000 -0600 |
4 |
@@ -1 +1 @@ |
5 |
-disabled |
6 |
+enabled |
7 |
diff -up e-smith-email-5.2.0/root/etc/e-smith/db/configuration/migrate/20smtpProxy.force_relay e-smith-email-5.2.0/root/etc/e-smith/db/configuration/migrate/20smtpProxy |
8 |
--- e-smith-email-5.2.0/root/etc/e-smith/db/configuration/migrate/20smtpProxy.force_relay 2010-10-04 09:04:34.000000000 -0600 |
9 |
+++ e-smith-email-5.2.0/root/etc/e-smith/db/configuration/migrate/20smtpProxy 2010-10-04 10:34:41.000000000 -0600 |
10 |
@@ -1,5 +1,9 @@ |
11 |
{ |
12 |
my $proxy = $DB->get_prop('smtpd','Proxy'); |
13 |
|
14 |
- $DB->set_prop('smtpd','Proxy', 'blocked') if $proxy eq 'enabled'; |
15 |
+ if ($proxy eq 'enabled') |
16 |
+ { |
17 |
+ $DB->set_prop('smtpd','Proxy', 'blocked'); |
18 |
+ $DB->set_prop('smtpd','Authentication', 'enabled'); |
19 |
+ } |
20 |
} |