Certain Mail Messages Fail to Import

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

症状

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 SMIME signature that does not follow RFC 2183 convention and contains 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"


Last modified on Mar 30, 2016

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.