diff docs/masqmail.conf.5 @ 37:4fee89792559

updated config example and man page to new default online file
author meillo@marmaro.de
date Mon, 10 May 2010 10:39:28 +0200
parents 8ea86ac25658
children 8071dc6c6ed1
line wrap: on
line diff
--- a/docs/masqmail.conf.5	Fri May 07 16:44:26 2010 +0200
+++ b/docs/masqmail.conf.5	Mon May 10 10:39:28 2010 +0200
@@ -351,9 +351,9 @@
 The file should only exist when there is currently a connection.
 Create it in your ip-up script with e.g.
 
-echo \-n <name> > /tmp/connect_route
+echo \-n <name> > /var/run/masqmail/masqmail-route
 
-chmod 0644 /tmp/connect_route
+chmod 0644 /var/run/masqmail/masqmail-route
 
 Do not forget to delete it in your ip-down script.
 
@@ -368,9 +368,9 @@
 
 #!/bin/sh
 
-[ \-e /tmp/connect_route ] || exit 1
+[ \-e /var/run/masqmail/masqmail-route ] || exit 1
 
-cat /tmp/connect_route
+cat /var/run/masqmail/masqmail-route
 
 exit 0