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: [email protected] message return to sender with body Mailquota Exceed ... it's correctly

    2) but if in filed TO: "FirstName Lastname" <[email protected]> message return to /dev/null

    Procmail try return message to address [email protected], but not to from_address
     
  2. falko

    falko Super Moderator ISPConfig Developer

    We will check that.
     
  3. dmw555

    dmw555 New Member

    in procmail.log see
    Folder: /usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> -t

    why sendmail ? it's correct ?

    Two experiments.
    this:
    echo 111 | usr/sbin/sendmail -oi [email protected] [email protected]

    OK

    and this:
    echo 111 | usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> [email protected]

    second command don't work of course.

    So, I think in command:
    /usr/sbin/sendmail -oi -f"FirstName LastName" <[email protected]> -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 ISPConfig Developer

    Postfix comes with a binary called sendmail for compatibility reasons.
     

Share This Page