masqmail

changeset 234:4b40be6f1cbd

renamed the default route for the local net it was called: local_net (default) now it is called: default local_net_route
author markus schnalke <meillo@marmaro.de>
date Fri, 22 Oct 2010 11:06:09 -0300
parents 3f33a0feeeb0
children 92063f90f9be
files man/masqmail.conf.5 src/conf.c
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/man/masqmail.conf.5	Thu Oct 21 18:52:50 2010 -0300
     1.2 +++ b/man/masqmail.conf.5	Fri Oct 22 11:06:09 2010 -0300
     1.3 @@ -232,11 +232,11 @@
     1.4  .TP
     1.5  \fBlocal_net_route = \fIfile\fR
     1.6  
     1.7 -This is similar to \fBonline_routes.\fIname\fR but for the local net.
     1.8 +This is similar to \fBonline_routes.\fIname\fR but used for delilvery to the local net.
     1.9  Recipient addresses that are in local_nets will be routed using this route configuration.
    1.10  Main purpose is to define a mail server with mail_host in your local network.
    1.11  In simple environments this can be left unset.
    1.12 -If unset, a default route configuration will be used.
    1.13 +If unset, a default route configuration (named ``default local_net_route'') will be used.
    1.14  
    1.15  .TP
    1.16  \fBalias_file = \fIfile\fR
     2.1 --- a/src/conf.c	Thu Oct 21 18:52:50 2010 -0300
     2.2 +++ b/src/conf.c	Fri Oct 22 11:06:09 2010 -0300
     2.3 @@ -897,7 +897,7 @@
     2.4  	memset(route, 0, sizeof(connect_route));
     2.5  	route->protocol = g_strdup("smtp");
     2.6  	route->is_local_net = TRUE;
     2.7 -	route->name = g_strdup("local_net (default)");
     2.8 +	route->name = g_strdup("default local_net_route");
     2.9  	route->expand_h_sender_address = TRUE;
    2.10  	route->resolve_list = g_list_append(NULL, resolve_byname);
    2.11  	route->connect_error_fail = TRUE;