# HG changeset patch # User carl # Date 1127065591 25200 # Node ID ca46fafc66216fdb119746f68a248e66feac9f60 # Parent 962a1f8f1d9f8a4580fa661e83c0879398b95cc3 dcc_to should not look at substitute mail_host diff -r 962a1f8f1d9f -r ca46fafc6621 ChangeLog --- a/ChangeLog Sun Sep 18 10:19:58 2005 -0700 +++ b/ChangeLog Sun Sep 18 10:46:31 2005 -0700 @@ -7,6 +7,9 @@ Authenticated clients are now exempt from all white/black listing in addition to the dnsbl lookups. + dcc_to should not look at substitute mail_host. That is only used + by dcc_from. + 5.3 2005-08-07 Properly quit if the config file has syntax errors on startup. Send mail to root if the config file needs to be reloaded since it was diff -r 962a1f8f1d9f -r ca46fafc6621 src/context.cpp --- a/src/context.cpp Sun Sep 18 10:19:58 2005 -0700 +++ b/src/context.cpp Sun Sep 18 10:46:31 2005 -0700 @@ -968,17 +968,17 @@ } } } - else if (have == token_substitute) { - if (tok.next() == token_mailhost) { - have = tok.next(); - if (keeping) { - if (me.allow_env_to(have)) { - me.add_to(have); - dc.add_to(have, &me); - } - } - } - } + //else if (have == token_substitute) { + // if (tok.next() == token_mailhost) { + // have = tok.next(); + // if (keeping) { + // if (me.allow_env_to(have)) { + // me.add_to(have); + // dc.add_to(have, &me); + // } + // } + // } + //} tok.skipeol(); } }