Sieve message sent - Viewable in logs?

New ideas and constructive comments go here.

Moderator: Moderators

Post Reply
Black20VT
Posts: 134
Joined: Sat Nov 05, 2005 12:35 pm
Location: UK
Contact:

Sieve message sent - Viewable in logs?

Post by Black20VT »

Hi,

I'm currently using a sieve 'vacation' on one of my accounts, but without actually checking with the recipient, there's no way of checking if a 'vacation' response was sent/triggered.

Would it be possible to add it in the logs or something so we can see?

Thanks.
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

It's not possible - Sieve sends directly to the outgoing SMTP pool which is not aware of the control center or its databases.
Technical Support support@rollernet.us
Roller Network LLC
Black20VT
Posts: 134
Joined: Sat Nov 05, 2005 12:35 pm
Location: UK
Contact:

Post by Black20VT »

RollerNetSupport wrote:It's not possible
That's a shame. So there's no way at all of showing a match/response triggered?

Thanks.
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

You can always throw a "notify" in with your autoresponder actions to send a message to yourself:

Code: Select all

require "notify";

  notify
    :method "mailto"
    :options "notifyme@example.com"
    :message "Some condition matched!";
}
Of course it's not totally impossible to log it - Sieve logs things to syslog and we could put a FIFO scanner on sysklogd to scan, capture, and associate certain patterns. It's just not something that's on our radar at the moment. It'll have to wait until the next time we revisit the logging system.
Technical Support support@rollernet.us
Roller Network LLC
Black20VT
Posts: 134
Joined: Sat Nov 05, 2005 12:35 pm
Location: UK
Contact:

Post by Black20VT »

Hmm, I might have to give that a go :D

No worries about it not being on the radar, I'm sure you've much bigger fish to fry and as always, thanks.
Black20VT
Posts: 134
Joined: Sat Nov 05, 2005 12:35 pm
Location: UK
Contact:

Post by Black20VT »

I'm enjoying playing with these sieve scripts!

I've now got a notification message being sent when it matches and it includes details of who the message was sent to, along with the subject of the message. Very cool, well, for me it is :lol:

But, I've another question, do 'vacation' responses get sent to 'Read receipts'?
RollerNetSupport
Site Admin
Posts: 598
Joined: Wed Nov 17, 2004 10:05 pm
Location: Nevada
Contact:

Post by RollerNetSupport »

But, I've another question, do 'vacation' responses get sent to 'Read receipts'?
Not sure. My guess would be "no" since it might fail the directly addressed standard, but we've personally never used read receipts. It would really depend on the mail client since that's what generates the "read" message.
Technical Support support@rollernet.us
Roller Network LLC
Black20VT
Posts: 134
Joined: Sat Nov 05, 2005 12:35 pm
Location: UK
Contact:

Post by Black20VT »

Sorry, was being lazy and should've tested it myself.

Now I'm home, I can and damn, it does respond...

Now to work out how to ignore 'read' receipts. Any pointers?

Just checked the 'read receipt' headers and unless I've missed something, i can't see anything obvious that I can pick on.
Post Reply