Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

smtpd.SMTPServer should announce 8BITMIME when supported and accept SMTPUTF8 without it #65994

Closed
zvyn mannequin opened this issue Jun 17, 2014 · 7 comments
Closed

smtpd.SMTPServer should announce 8BITMIME when supported and accept SMTPUTF8 without it #65994

zvyn mannequin opened this issue Jun 17, 2014 · 7 comments
Labels
topic-email type-feature A feature request or enhancement

Comments

@zvyn
Copy link
Mannequin

zvyn mannequin commented Jun 17, 2014

BPO 21795
Nosy @warsaw, @pitrou, @bitdancer, @zvyn
Files
  • issue21795.patch
  • issue21795v2.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2015-05-11.16:13:11.590>
    created_at = <Date 2014-06-17.19:30:01.412>
    labels = ['type-feature', 'expert-email']
    title = 'smtpd.SMTPServer should announce 8BITMIME when supported and accept SMTPUTF8 without it'
    updated_at = <Date 2015-05-11.16:13:11.589>
    user = 'https://github.com/zvyn'

    bugs.python.org fields:

    activity = <Date 2015-05-11.16:13:11.589>
    actor = 'r.david.murray'
    assignee = 'none'
    closed = True
    closed_date = <Date 2015-05-11.16:13:11.590>
    closer = 'r.david.murray'
    components = ['email']
    creation = <Date 2014-06-17.19:30:01.412>
    creator = 'zvyn'
    dependencies = []
    files = ['36360', '36370']
    hgrepos = []
    issue_num = 21795
    keywords = ['patch']
    message_count = 7.0
    messages = ['220868', '225225', '225236', '225300', '225308', '242900', '242901']
    nosy_count = 6.0
    nosy_names = ['barry', 'pitrou', 'r.david.murray', 'jesstess', 'python-dev', 'zvyn']
    pr_nums = []
    priority = 'normal'
    resolution = 'fixed'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue21795'
    versions = ['Python 3.5']

    @zvyn
    Copy link
    Mannequin Author

    zvyn mannequin commented Jun 17, 2014

    The smtpd.SMTPServer does support 8BITMIME if decode_date is False (bpo-19662) and could be announced under this condition. The patch for bpo-21725 already implements 8BITMIME so this can easily be done afterwards.

    @zvyn zvyn mannequin added the topic-email label Jun 17, 2014
    @zvyn
    Copy link
    Mannequin Author

    zvyn mannequin commented Aug 12, 2014

    Also the server should accept the SMTPUTF8 mail argument completely independently of 8BITMIME if both are enabled.

    @zvyn zvyn mannequin changed the title smtpd.SMTPServer should announce 8BITMIME when supported smtpd.SMTPServer should announce 8BITMIME when supported and accept SMTPUTF8 without it Aug 12, 2014
    @zvyn
    Copy link
    Mannequin Author

    zvyn mannequin commented Aug 12, 2014

    The proposed patch extends process_message with an **kwargs catch-all which is filled with 'mail_options' and 'rcpt_options' if decode_data is False. I also removed process_smtputf8_message as one can detect the need for supporting SMTPUTF8 from kwargs['mail_options'] now.
    8BITMIE is accepted if decode_data=False and SMTPUTF8 is accepted if enable_SMTPUTF8=True (which implies decode_data=False).

    @bitdancer
    Copy link
    Member

    Added some review comments.

    @zvyn
    Copy link
    Mannequin Author

    zvyn mannequin commented Aug 14, 2014

    Thanks, for the review, here's comes an updated version.

    @python-dev
    Copy link
    Mannequin

    python-dev mannequin commented May 11, 2015

    New changeset e34ed02738bf by R David Murray in branch 'default':
    bpo-21795: advertise 8BITMIME if decode_data is False.
    https://hg.python.org/cpython/rev/e34ed02738bf

    @bitdancer
    Copy link
    Member

    Thanks, Milan. I tweaked some things and tried to sort out the docs for all the changes we have made to smtpd. If you see anything I screwed up let me know.

    @bitdancer bitdancer added the type-feature A feature request or enhancement label May 11, 2015
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    topic-email type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    1 participant