[exim-dev] [Bug 427] Add conditional GOTO in ACL processes

Top Pagina
Delete this message
Reply to this message
Auteur: bug427
Datum:  
Aan: exim-dev
Onderwerp: [exim-dev] [Bug 427] Add conditional GOTO in ACL processes
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.

http://www.exim.org/bugzilla/show_bug.cgi?id=427





------- Comment #3 from johannes@??? 2006-12-07 13:28 -------
Huh? Let's see an example:

goto something
condition = 1
accept 2
accept 3
...
accept 50
label something
accept 51
...
accept 100


you can easily rewrite this as

acl_firstpart:
accept 2
...
accept 50

acl_secondpart:
accept 51
...
accept 100

and then instead of goto use

accept
condition = (inverted from above)
acl = acl_firstpart
accept
acl = acl_firstpart

or something like that.

--
Configure bugmail: http://www.exim.org/bugzilla/userprefs.cgi?tab=email