Questions tagged [rfc822]

RFC822 is the historical original standard for the format of email messages.

RFC5322 (which supersedes 2822, which in turn superseded the original 822) defines the basic format of email messages. Its companion document RFC5321 documents the SMTP transport protocol.

These days, you also need to know about and the various internationalization features which have been added to the email infrastructure over the years.

The protocol is used for mail transport between servers; for mailbox access from clients, perhaps you need to look at and/or .

Resources:

See for more details on the Internet Engineering Task Force RFC (Request For Comments) documents and process.

128 questions
0
votes
1 answer

format date to rfc 822 in groovy

i´m having troubles generating a valid tag in a rss2.0 xml document I´m using this code pubDate(review.dtCreated.format('EEE, d MMM yyyy HH:mm:ss Z')) it results in Di, 21 Mai 2013 16:48:28 +0200 that looks correct for me…
john Smith
  • 17,409
  • 11
  • 76
  • 117
0
votes
1 answer

What are the valid characters in the domain part of e-mail address?

Intention I'm trying to do some minimal very minimal validation of e-mail addresses, despite seeing a lot of advice advising against doing that. The reason I'm doing this is that spec I am implementing requires e-mail addresses to be in this…
Merlyn Morgan-Graham
  • 58,163
  • 16
  • 128
  • 183
0
votes
1 answer

How to create RFC822 email message with comment inside message?

I'm uploading messages into my IMAP mail server via IMAP store operation. However, I would like to add "comments" to these messages so that when I download these emails again I know the they are created by "store". Basically, I need to add text…
Robert Grezan
  • 1,266
  • 3
  • 13
  • 27
0
votes
2 answers

Conversion from MySQL date to RFC822 date format

I really have no idea what's going on here. I'm trying to add a RSS feed to my blog. Since RSS requires the date to be in the RFC822 format, I'm using the PHP date function to convert my original timestamp (0000-00-00 00:00:00). The problem is that…
user1781186
0
votes
2 answers

Hotmail is ignoring return-path header

I am using this php class on a small email list manager, I am using a hotmail email and smtp.live.com to send the emails. It works fine, but I am getting some bounced emails so I wanted to receive them on a different address where it would be easier…
James Harzs
  • 1,853
  • 5
  • 21
  • 30
0
votes
1 answer

RFC-32 Date format to Short Date (MM/DD/YYYY) with ASP Classic

I'm not a strong ASP Classic developer, but I am tasked with supporting this application at work, well I've been trying to convert an RSS feed date to a short date format. And I cannot seem to find a solution. I have this format: Wed, 10 Jun 2009…
Jakub
  • 20,418
  • 8
  • 65
  • 92
-1
votes
1 answer

is there a good parser for rfc822 formatted email address

usually, these emails come in the form name. I am trying to use MailBoxAddress.Parse to take the name and email address. I am getting too many errors here as it seems that people put their name in any format they want. For example, the following…
Samuel
  • 1,949
  • 4
  • 18
  • 30
-2
votes
2 answers

two questions (RFC822, login info) about sending email via python

1 - In my email-sending script, I store spaced-out emails in a string, then I use ", ".join(to.split()). However, it looks like the script only sends to the 1st email - is it something to do with RFC822 format? If so, how can I fix this? 2 - I feel…
echoblaze
  • 11,176
  • 13
  • 44
  • 49
1 2 3
8
9