aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-05-29 12:43:46 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-05-29 12:43:46 +0000
commit80ed6a818fe78597fca694d27eb3d3adb64e549a (patch)
treeb355b88508e3d57973cca94a17321ef930388da2 /doc
parent181d72e3e2643a32b4a9754a6fac439a61a6a1e0 (diff)
downloadmailfromd-80ed6a818fe78597fca694d27eb3d3adb64e549a.tar.gz
mailfromd-80ed6a818fe78597fca694d27eb3d3adb64e549a.tar.bz2
Update
git-svn-id: file:///svnroot/mailfromd/trunk@1483 7a8a7f39-df28-0410-adc6-e0d955640f24
Diffstat (limited to 'doc')
-rw-r--r--doc/mailfromd.texi74
1 files changed, 37 insertions, 37 deletions
diff --git a/doc/mailfromd.texi b/doc/mailfromd.texi
index 503dcf7f..2426269b 100644
--- a/doc/mailfromd.texi
+++ b/doc/mailfromd.texi
@@ -1685,14 +1685,14 @@ purpose:
@smallexample
@group
- on poll $f do
- when success:
- accept
- when not_found or failure:
- reject 550 5.1.0 "Sender validity not confirmed"
- when temp_failure:
- tempfail 450 4.1.0 "Try again later"
- done
+on poll $f do
+when success:
+ accept
+when not_found or failure:
+ reject 550 5.1.0 "Sender validity not confirmed"
+when temp_failure:
+ tempfail 450 4.1.0 "Try again later"
+done
@end group
@end smallexample
@@ -4499,8 +4499,8 @@ Then, in @code{prog envfrom} one can use:
@group
on poll $f
do
- when not_found or failure:
- reject 550 5.1.0 cachestr() "Sender validity not confirmed"
+when not_found or failure:
+ reject 550 5.1.0 cachestr() "Sender validity not confirmed"
done
@end group
@end smallexample
@@ -8436,15 +8436,15 @@ fi
@group
switch @var{condition}
do
- case @var{x1} [or @var{x2} @dots{}]:
- @var{stmt1}
- case @var{y1} [or @var{y2} @dots{}]:
- @var{stmt2}
- .
- .
- .
- [default:
- @var{stmt}]
+case @var{x1} [or @var{x2} @dots{}]:
+ @var{stmt1}
+case @var{y1} [or @var{y2} @dots{}]:
+ @var{stmt2}
+ .
+ .
+ .
+[default:
+ @var{stmt}]
done
@end group
@end smallexample
@@ -8475,13 +8475,13 @@ branches are tried in turn. If none of them matches, @var{stmt}
@group
switch %x
do
- case 1 or 3:
- add "X-Branch" "1"
- accept
- case 2 or 4 or 6:
- add "X-Branch" "2"
- default:
- reject
+case 1 or 3:
+ add "X-Branch" "1"
+ accept
+case 2 or 4 or 6:
+ add "X-Branch" "2"
+default:
+ reject
done
@end group
@end smallexample
@@ -9049,10 +9049,10 @@ do
do
switch $1
do
- case failure:
- reject 550 5.1.0 "Sender validity not confirmed"
- case temp_failure:
- tempfail 450 4.1.0 "Try again later"
+ case failure:
+ reject 550 5.1.0 "Sender validity not confirmed"
+ case temp_failure:
+ tempfail 450 4.1.0 "Try again later"
done
done
@@ -9113,12 +9113,12 @@ prog envfrom
do
on stdpoll($1, %ehlo_domain, %mailfrom_address)
do
- when success:
- accept
- when not_found or failure:
- reject 550 5.1.0 "Sender validity not confirmed"
- when temp_failure:
- tempfail 450 4.1.0 "Try again later"
+ when success:
+ accept
+ when not_found or failure:
+ reject 550 5.1.0 "Sender validity not confirmed"
+ when temp_failure:
+ tempfail 450 4.1.0 "Try again later"
done
done
@end group
@@ -9466,7 +9466,7 @@ fail-proof, but it tries to cover most existing host naming patterns:
elif hostname $client_addr matches
".*(adsl|sdsl|hdsl|ldsl|xdsl|dialin|dialup|\
ppp|dhcp|dynamic|[-.]cpe[-.]).*"
- reject 550 5.7.1 "Use your SMTP relay"
+ reject 550 5.7.1 "Use your SMTP relay"
@end group
@end smallexample

Return to:

Send suggestions and report system problems to the System administrator.