This repository was archived by the owner on Feb 13, 2020. It is now read-only.
This repository was archived by the owner on Feb 13, 2020. It is now read-only.
outlook.com and office365 - calendar invites - problem with plus addressing #541
Open
Description
The iMIP message send by outbound.py uses 'plus addressing' for the reply-to field and the ORGANIZER field in the ics message. However, outlook.com / office365 clear the '+' sign in the ics message, resulting in a wrong reply address when the user accepts or denies the invite.
Changing the line:
addressWithToken = "%s+%s@%s" % (pre, token, post)
to:
addressWithToken = "%s%%2B%s%%40%s" % (pre, token, post)
in outbound.py, solves this issue.
gmail accepts the "url encoded address" also.
Metadata
Metadata
Assignees
Labels
No labels