masqmail
diff src/deliver.c @ 178:91f8ee6514f5
removed `remote_port' config option
it was already deprecated for some time
see NEWS at release 0.2.12 for details
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 16:48:45 +0200 |
parents | a80ebfa16cd5 |
children | 3190e6864452 |
line diff
1.1 --- a/src/deliver.c Wed Jul 14 16:35:17 2010 +0200 1.2 +++ b/src/deliver.c Wed Jul 14 16:48:45 2010 +0200 1.3 @@ -321,7 +321,7 @@ 1.4 gboolean ok = FALSE; 1.5 GList *msgout_node; 1.6 smtp_base *psb; 1.7 - gint port; 1.8 + gint port = 25; 1.9 1.10 /* paranoid check: */ 1.11 if (msgout_list == NULL) { 1.12 @@ -332,8 +332,7 @@ 1.13 if (host == NULL) { 1.14 host = route->mail_host->address; 1.15 port = route->mail_host->port; 1.16 - } else 1.17 - port = conf.remote_port; 1.18 + } 1.19 1.20 #ifdef ENABLE_POP3 1.21 if (route->pop3_login) {