Summary | Wrong "Reject" recipe |
Queue | Ingo |
Queue Version | 3.1.4 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | slusarz (at) horde (dot) org |
Requester | admin (at) dei (dot) unipd (dot) it |
Created | 03/19/2014 (4103 days ago) |
Due | |
Updated | 03/20/2014 (4102 days ago) |
Assigned | 03/20/2014 (4102 days ago) |
Resolved | 03/20/2014 (4102 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | Yes |
commit ba854bc8ab887a9d46412a699eedb36175c700f7
Author: Michael M Slusarz <slusarz@horde.org>
Date: Thu Mar 20 17:01:28 2014 -0600
[mms] Fix procmail reject recipe (
Bug #13060; admin@dei.unipd.it).Conflicts:
ingo/docs/CHANGES
ingo/package.xml
ingo/docs/CHANGES | 7 +++++++
ingo/lib/Script/Procmail/Recipe.php | 1 -
ingo/package.xml | 13 +++++++++++++
3 files changed, 20 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/ba854bc8ab887a9d46412a699eedb36175c700f7
State ⇒ Resolved
commit bbb23c9a26cd5cd78d228f12417610b3bd0079da
Author: Michael M Slusarz <slusarz@horde.org>
Date: Thu Mar 20 17:01:28 2014 -0600
[mms] Fix procmail reject recipe (
Bug #13060; admin@dei.unipd.it).ingo/docs/CHANGES | 1 +
ingo/lib/Script/Procmail/Recipe.php | 1 -
ingo/package.xml | 4 ++--
3 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/bbb23c9a26cd5cd78d228f12417610b3bd0079da
State ⇒ Assigned
Version ⇒ 3.1.4
Priority ⇒ 1. Low
Assigned to Michael Slusarz
Priority ⇒ 3. High
State ⇒ Unconfirmed
New Attachment: ingo_recipe.patch
Patch ⇒ Yes
Milestone ⇒
Queue ⇒ Ingo
Summary ⇒ Wrong "Reject" recipe
Type ⇒ Bug
introduced a bug on "Reject" procmail recipe:
That's wrong:
....
:0 Wh
* !^FROM_DAEMON
* !^X-Loop: $SENDER
:0 eh
| (formail -rA"X-Loop: $SENDER" \
....
resulting in all matched messages delivered to ":0" mailbox :-{
should be:
...
:0 Wh
* !^FROM_DAEMON
* !^X-Loop: $SENDER
| (formail -rA"X-Loop: $SENDER" \
....
Please correct:
ingo/lib/Script/Procmail/Recipe.php
129d128
< $this->_action[] = ' :0 eh';
Best regards
Valerio Pulese