Stephan Bosch-2 wrote
On 4/21/2013 3:10 PM, iliusha wrote:
The whole point of Bcc is that the sending SMTP server removes the header before the mail is sent
Do you see anything strange in the logs?
You could try the following Sieve script to get a bit more information (perhaps I should make a normal debug log line for this).
require "vnd.dovecot.debug"; require "envelope"; require "variables";
# Get envelope if envelope :matches "to" "*" { set "env_to" "${1}"; }
debug_log "ENVELOPE_TO: ${env_to}";
You need to enable the vnd.dovecot.debug extension in your sieve_extensions= setting.
The debug line will be logged in the user log (e.g. ~/.dovecot.sieve.log)
Regards,
Stephan.
Enabling debug i found where was my mistake, so i use Virtual list: test@example.com -> user@example.com. and when i sent email to test@example.com it automatically goes to user@example.com, but in email headers i saw Envelope To: test@example.com, and I thought that sieve also sees Envelope to: test@example.com, but it is not right. (It is my first experience with sieve, i am new in this.)
main_script: line 17: info: DEBUG: ENVELOPE_TO: *user@example.com*. info: msgid=<010301ce3e9e$642ed9f0$2c8c8dd0$@gmail.com>: stored mail into mailbox 'INBOX'
Anyway, i'm happy that i found the solution using this forum, otherwise i did not believe that it is possible. Thank You.
-- View this message in context: http://dovecot.2317879.n4.nabble.com/Sieve-BCC-tp41757p41767.html Sent from the Dovecot mailing list archive at Nabble.com.