problem with procmail

Discussion in 'Installation/Configuration' started by dmw555, Jun 4, 2006.

  1. dmw555

    dmw555 New Member

    Hello !

    if mail box quota exceed here two situation

    1) if in filed TO: user@aaa.com message return to sender with body Mailquota Exceed ... it's correctly

    2) but if in filed TO: "FirstName Lastname" <user@aaa.com> message return to /dev/null

    Procmail try return message to address FirstName@aaa.com, but not to from_address
     
  2. falko

    falko Super Moderator Howtoforge Staff

    We will check that.
     
  3. dmw555

    dmw555 New Member

    in procmail.log see
    Folder: /usr/sbin/sendmail -oi -f"FirstName LastName" <test@aaa.com> -t

    why sendmail ? it's correct ?

    Two experiments.
    this:
    echo 111 | usr/sbin/sendmail -oi -ftest@aaa.com test@bbb.com

    OK

    and this:
    echo 111 | usr/sbin/sendmail -oi -f"FirstName LastName" <test@aaa.com> test@bbb.com

    second command don't work of course.

    So, I think in command:
    /usr/sbin/sendmail -oi -f"FirstName LastName" <test@aaa.com> -t
    switch -t ignore in this situation.
     
  4. dmw555

    dmw555 New Member

    may this line in quota.rc
    ! -f${EMAIL} -t

    change to

    ! -f"${EMAIL}" -t

    i try it later.
     
  5. falko

    falko Super Moderator Howtoforge Staff

    Postfix comes with a binary called sendmail for compatibility reasons.
     

Share This Page