You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Smtp supports multiple transactions per single connection, consider following example:
C: helo
C: mail from
C: rcpt to
C: data
C: rset
C: mail from
...
Purepythonmilter does not reset session state after end-of-data. After 'Continue' response to End of Data Postfix sends SMFIC_ABORT, this is meant to signal milter to reset session to a clean state.
SMFIC_ABORT is also sent after Smtp transaction RSET:
C: helo
C: mail from
C: rcpt to
C: rset
C: mail from
...
Since the milters' session is not reset, any existing session header 'manipulations' remains.
The text was updated successfully, but these errors were encountered:
Smtp supports multiple transactions per single connection, consider following example:
C: helo
C: mail from
C: rcpt to
C: data
C: rset
C: mail from
...
Purepythonmilter does not reset session state after end-of-data. After 'Continue' response to End of Data Postfix sends SMFIC_ABORT, this is meant to signal milter to reset session to a clean state.
SMFIC_ABORT is also sent after Smtp transaction RSET:
C: helo
C: mail from
C: rcpt to
C: rset
C: mail from
...
Since the milters' session is not reset, any existing session header 'manipulations' remains.
The text was updated successfully, but these errors were encountered: