Summary | 'Destination' and other meta-headers like TO_ in procmail |
Queue | Ingo |
Queue Version | HEAD |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | selsky (at) columbia (dot) edu |
Requester | sky (at) columbia (dot) edu |
Created | 06/14/2005 (7344 days ago) |
Due | |
Updated | 05/21/2007 (6638 days ago) |
Assigned | 11/16/2006 (6824 days ago) |
Resolved | 05/21/2007 (6638 days ago) |
Milestone | |
Patch | No |
State ⇒ Resolved
Assigned to Matt Selsky
State ⇒ Assigned
fields patch, and this will be taken care of.
adding more fields to fields.php then perhaps destination doesn't need
to be a special procmail only thing.
New Attachment: fields.patch
^TO_, etc
I'm no longer working at the same place where I was working on horde,
so it might be harder for me to clear the cobwebs if you have more
specific questions about the implementation, but I'll be glad to try.
It looks like Columbia is still using this successfully.
easy with a Sieve driver (too).
your enhancement request is?
for all 'Destination' fields, matching an address in the To,Cc,
Resent-to, etc. fields with one rule. This feature is, at least,
exposed with the Procmail driver with a regex or something (I forget),
but if you want _any_ mail that goes to a certain email address (or
comes from a 'destination'), regardless of the specific header field,
then you need to make several rules (or did).
Thus, this simply adds three options in the fields, which make this
easy with a Sieve driver (too).
enhancement request is?
procmail driver? Or?
State ⇒ Feedback
procmail driver? Or?
Priority ⇒ 1. Low
State ⇒ New
Queue ⇒ Ingo
Type ⇒ Enhancement
Summary ⇒ 'Destination' and other meta-headers like TO_ in procmail
sieve driver. If this worked for the other drivers, this could be a
more general addition, instead of just for procmail:
'To,Cc,Bcc,Resent-To' => array(
'label' => _("Destination (To,Cc,Bcc,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),
'From,Sender,Reply-To,Resent-From' => array(
'label' => _("Source (From,Reply-To,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),
'To,Cc,Bcc,Resent-To,From,Sender,Reply-To,Resent-From' => array(
'label' => _("Participant (From,To,etc)"),
'type' => INGO_STORAGE_TYPE_HEADER
),