Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

delphi - sending mail but no message-id -


i getting interesting rejections clients mail server when sending mail indy-10's tidmessage component saying:

550 rejected: message not contain message-id

i when using indy's own demo app

http://www.indyproject.org/demodownloads/indy_10_mailclient.zip

what do fix this. thanks!

tidmessage in indy 10 intentionally omits 'message-id' header when encoding email socket or tstream. have use tidmessage.extraheaders property, eg:

idmessage1.msgid := ...'; idmessage.extraheaders.values['message-id'] := idmessage1.msgid; 

edit:

as followup - tidmessage has been updated logic changes in how handles "message-id" , "in-reply-to" headers:

http://indyproject.org/sockets/blogs/changelog/20160912.aspx

the tidmessage.msgid property generates "message-id" header regardless of whether email being saved, streamed, or transmitted. not need use extraheaders property anymore.


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -