Displaying 2 results from an estimated 2 matches for "deliver_set".
2007 Apr 19
2
deliver failing to execute sendmail (sieve)
...erday (related to dictionary quota debugging) to find what could be
wrong, but no luck so far. So, I was hoping for suggestions.
Basically, deliver seems to not know where sendmail is. I have
sendmail_path set in dovecot.conf (never changed that), yet when deliver
tries to pull the location via deliver_set->sendmail_path, it's just
returning an empty string. If I hard-code the location in smtp-client.c,
it works again.
Any ideas?
2009 Feb 02
1
Bug in Deliver v1.2
...header exists in the mail, two problems
show up in this block in main():
if (destaddr == NULL) {
destaddr = deliver_get_address(mail, "Envelope-To");
if (destaddr == NULL) {
destaddr = strchr(user, '@') == NULL ? user :
t_strconcat(user, "@",
deliver_set->hostname, NULL);
}
}
1) deliver_get_address(mail, "Envelope-To")
returns the argument of the -f option.
2) if no Envelope-To header is available, destaddr gets assigned
user at hostname if user contains a domain already.
Attached patches propose fixes for the problems.
Bye,...