Tagged Questions
The rfc2822 tag has no wiki summary.
5
votes
4answers
349 views
C# Email Regular Expression — Any out there that adhere to the RFC 2822 guidelines?
I realize that there are a ton of regex email validations, but I can't seem to find one that adheres to the RFC 2822 standard.
The ones I find keep letting in junk like ..@abc.com get through.
...
3
votes
2answers
843 views
Convert Python datetime to rfc 2822
I want to convert a Python datetime to a an RFC 2822 datetime. I've tried these methods to no avail:
>>> from email.Utils import formatdate
>>> import datetime
>>> ...
3
votes
2answers
1k views
Parsing RFC 2822 date in JAVA
I need to parse an RFC 2822 string representation of a date in Java. An example string is here:
Sat, 13 Mar 2010 11:29:05 -0800
It looks pretty nasty so I wanted to make sure I was doing ...
2
votes
2answers
211 views
converting javascript regex to php preg_match
I'm building a contact form using PHP with jQuery validation and I wanted them both to have the same email pattern. I looked into the Validation plugin source code and found this:
...
2
votes
2answers
119 views
Is an email address valid that passes validation but bounces?
I use the Zend_Validate_EmailAddress to validate email addresses for my email program. It validates according to the RFC2822 - http://framework.zend.com/manual/en/zend.validate.set.html
My question ...
1
vote
1answer
844 views
Forcing “+0000” timezone for RFC2822 times in Ruby
How can I force the Time.rfc2822 function to spit out +0000?
Ruby lets me parse RFC2822 formatted times pretty easily:
require 'time'
time = Time.parse('14 Aug 2009 09:28:32 +0000')
puts time
=> ...
0
votes
2answers
375 views
regex to validate a message-ID as per RFC2822
I have not found a regexp to do this. I need to validate the "Message-ID:" value from an email. It is similar to a email address validation regexp but much simpler, without most of the edge cases the ...
0
votes
1answer
94 views
How to add a message as an attachment on another message with javax.mail
I've got a mailer daemon that check a box and fetch the mails inside every X mins.
When an error occurs, I need to send a alert mail, with the faulty message as an attachment.
I dont want to create a ...