Certain Mail Messages Fail to Import
プラットフォームについて: Cloud および Data Center - この記事はクラウドと Data Center 両方のプラットフォームに等しく適用されます。
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
症状
Clicking on the Fetch mail now
button showed success, however there are no results shown in Confluence.
This warning shows up in the log file:
2009-12-19 10:17:00,803 WARN [DefaultQuartzScheduler_Worker-2] [atlassian.confluence.mail.DefaultMailContentManager] storeIncomingMail Could not store mail message Expected ';', got ","
javax.mail.internet.ParseException: Expected ';', got ","
at javax.mail.internet.ParameterList.<init>(ParameterList.java:281)
at javax.mail.internet.ContentDisposition.<init>(ContentDisposition.java:100)
at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:1085)
at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:318)
at com.atlassian.mail.MailUtils.getBodyFromMultipart(MailUtils.java:469)
原因
Some mail messages may contain an SMIME signature that does not follow RFC 2183 convention and contains a header like this:
Content-Disposition: attachment;
size=362586;
creation-date=Wed, 23 Sep 2009 15:07:22 GMT;
modification-date=Wed, 09 Dec 2009 16:17:06 GMT;
filename="documentName.doc"
In this case, the creation-date and modification-date fields are not encapsulated in quotes.
ソリューション
The problem is caused by the program that creates the SMIME signature. If RFC 2183 is followed, the header should have the dates encapsulated in quotes:
Content-Disposition: attachment;
size=362586;
creation-date="Wed, 23 Sep 2009 15:07:22 GMT";
modification-date="Wed, 09 Dec 2009 16:17:06 GMT";
filename="documentName.doc"