Summary | Forward procmail script not properly generated |
Queue | Ingo |
Queue Version | 1.0 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | Horde Developers (at) , ben (at) |
Requester | curt (at) lecaptain (dot) org |
Created | 01/10/2005 (7487 days ago) |
Due | |
Updated | 02/09/2005 (7457 days ago) |
Assigned | 01/11/2005 (7486 days ago) |
Resolved | 02/09/2005 (7457 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
I inserted into "procmail.php" following 2 lines to function
"Procmail_Recipe":
...
case INGO_STORAGE_ACTION_FORWARD:
$this->_action[] = '{';
foreach ($params['action-value'] as $address) {
if (!empty($address)) {
$this->_action[] = ' :0 c';
$this->_action[] = ' ! ' . $address;
}
}
/*************** Extension Ralf Hager *************/
$this->_action[] = ' :0 ';
$this->_action[] = ' /dev/null';
/*************** End Ralf Hager ************************/
$this->_action[] = '}';
break;
...
Now forwarding works in the designed way.
State ⇒ Assigned
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Forward procmail script not properly generated
Queue ⇒ Ingo
copy of messages in this account? " box unchecked, the procmail script
that is generated does create forward and copy by default. After
checking that same box, the same thing happens, the message is
forwarded and copied. So, both checked and unchecked forward and
copy, which is not the desired result.