Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
14k views

How do I parse and convert DateTime’s to the RFC 822 date-time format?

How do I convert a DateTime structure to its equivalent RFC 822 date-time formatted string representation and parse this string representation back to a DateTime structure? The RFC-822 date-time ...
10
votes
2answers
2k views

How do I elegantly print the date in RFC822 format in Perl?

How can I elegantly print the date in RFC822 format in Perl?
5
votes
5answers
370 views

Is root@[127.1] a syntactically valid e-mail address?

Is root@[127.1] a syntactically valid e-mail address? Why? Why not?
5
votes
2answers
1k views

How do I convert RFC822 to a python datetime object?

I know how to do this the other way around... it would be: >>> dt.rfc822() 'Sun, 09 Mar 1997 13:45:00 -0500'
4
votes
5answers
2k views

RFC822 Timezone Parsing in Java

I have a JS date that is being converted by Dojo into RFC822 format. The function call - dojo.date.toRfc3339(jsDate), generates the following date - 2007-02-26T20:15:00+02:00. I have an application ...
3
votes
1answer
88 views

Sorting dates stored as varchar/rfc822

Don't ask why (it's something out of my control), but dates are being stored as RFC-822 in our MySQL DB in varchar(125). RFC-822 = Mon Jun 13 2011 11:30:00 GMT-0400 (EDT) or Mon Jun 13 17:00:00 EDT ...
3
votes
3answers
391 views

Saxon XSLT 2.0 and RFC 822 date format

What is the right way to format xs:dateTime to RFC 822?
3
votes
1answer
577 views

Parsing an RFC822-Datetime in .NETMF 4.0

I have an application written in .NETMF that requires that I be able to parse an RFC822-Datetime. Normally, this would be easy, but NETMF does not have a DateTime.parse() method, nor does it have ...
3
votes
1answer
3k views

How can I get an email message's text content using python?

Given an RFC822 message in Python 2.6, how can I get the right text/plain content part? Basically, the algorithm I want is this: message = email.message_from_string(raw_message) if ...
2
votes
1answer
85 views

Convert RFC 822 Date to TDateTime

Can anyone suggest a Delphi library that will covert a date string in the RFC 822 format to a TDateTime? e.g. 24 Oct 2011 13:54:55 -0000 I imagine this is something that you could easily get wrong ...
2
votes
1answer
77 views

Any suggestions for how to format an RFC822 email as JSON?

I am wanting to insert RFC822 emails into a JSON database. I'm wanting to envisage a "good" way to structure the email as JSON (excluding attachments). Does anyone know of an example of a "good" ...
2
votes
1answer
354 views

Re-assemble email messages encoded in 'message/partial' with Python

Is there a way to reassemble in Python email messages that are encoded with Content-Type: message/partial (i.e. section '7.3.2. The Message/Partial subtype' of RFC 1521)? In particular, given a set ...
2
votes
2answers
414 views

MIME RFC “Content-Type” parameter confusion? Unclear RFC specification

I'm trying to implement a basic MIME parser for the multipart/related in C++/Qt. So far I've been writing some basic parser code for headers, and I'm reading the RFCs to get an idea how to do ...
2
votes
1answer
620 views

How to get the recipient address of an email via IMAP in Ruby

We have a user whose mail account is deluged with spam. I'm suspecting that he fields a large number of email accounts and therefore is subject to more than he might be with only one or two addresses. ...
2
votes
3answers
452 views

smtp: why does email needs envelope and what does the envelope mean

What is the exact difference between the envelope and the email in smtp? Why does the protocol need the envelope? In snail mail, the letter needs not contain addresses and is not visible to the ...
1
vote
1answer
48 views

Strip e-mail addresses from a string in PHP

I operate an archive of e-mail for a law firm that receives mail from Postfix and uses a PHP script to insert messages into a database. This works mostly fine but sometimes the regular expression I ...
1
vote
1answer
35 views

Render email messages to PS/PDF?

I'm looking for a way to take a standard mail message (RFC 822 et. al) in a text file (say, from a mail spool or maildir), format it nicely, and output a postscript or PDF file suitable for printing. ...
1
vote
3answers
324 views

How can I convert an RFC 822 timestamp into a human readable format in Python?

Does anyone know of a Python module that will convert an RFC 822 timestamp into a human readable format (like Twitter does) in Python? I found parsedatetime, which seems to do the reverse.
1
vote
2answers
415 views

How to decorate (monkeypatch…) a Python class with methods from another class?

Both httplib.HTTPMessage and email.message.Message classes[1] implements methods for RFC822 headers parsing. Unfortunately, they have different implementations[2] and they do not provide the same ...
1
vote
1answer
410 views

Convert RFC 822 timestamp to unixtime, timezone values not working , C/C++

I've a function which converts an RFC 822 timestamp to unixtime #include <stdio.h> #include <time.h> int main() { struct tm tm; time_t unixtime; strptime("Sun, 20 Feb 2011 10:28:02 ...
1
vote
1answer
256 views

Displaying a CAST datetime in RFC822 Format

I would like to display a CAST datetime in an SQL table using the RFC822 format (ex:Fri, 19 Nov 2010 13:43:39) from the following SELECT (part of a larger statement found here) *_snip_* ,(Select ...
1
vote
3answers
420 views

How to copy a message from one imap server to another imap server using Python imaplib?

I want to copy a message from one IMAP server to another IMAP server. I don't want to alter any of the message data. I'm using python imaplib. This is the code I tried: typ, data = ...
1
vote
2answers
125 views

Is there a non-deprecated equivalent of rfc822.AddressList?

I need something like rfc822.AddressList to parse, say, the content of the "TO" header field of an email into individual addresses. Since rfc822 is deprecated in favor of the email package, I looked ...
1
vote
1answer
523 views

How do I elegantly print the %z (timezone) format in Perl on Windows?

An offshoot of http://stackoverflow.com/questions/172110/how-do-i-elegantly-print-the-date-in-rfc822-format-in-perl, but Windows specific. On windows: C:\> perl -MPOSIX print strftime('%z', ...
1
vote
1answer
453 views

How can I parse raw email source and extract the HTML part?

In my iPhone app, I'm handed the raw source of an email, in RFC822 (or "eml") format. I'd like the HTML part of this message (if one exists). Rather than attempting to parse it out myself and ...
1
vote
1answer
106 views

How to convert a Word file content (with images and tables) into RFC 822 format using c#?

I want to read a Word file (contains images and table). After that i want to convert it's content into "RFC 822 format ". Looking for some APIS and sample code for above.
1
vote
1answer
757 views

DateTime to RFC-1123 gives inaccurate timezone

If I get the RFC-1123 formatted date of a DateTime object, it gives the current local time, but gives the timezone as GMT (which is inaccurate). DateTime.Now.ToString("r"); returns Fri, 12 Feb 2010 ...
1
vote
1answer
842 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 => ...
1
vote
3answers
3k views

Stumped on C# DateTime ToString() formatting problem

I am getting some junk data returned from a ToString() call on a DateTime object in C# and I'm afraid I'm stumped after poking around with it for a while. The function is supposed to format dates to ...
0
votes
0answers
10 views

When sending mail, how can I control what text to show in the inbox preview on iPhones/iPads etc.?

When I browse the inbox on iPhones and iPads, I see a short preview of the text below the subject line. Gmail also does the same thing (though I don't know if this works the same way). Is it some way ...
0
votes
0answers
31 views

What is the difference between an `eml` file and an RFC822 email message?

I see these two terms used interchangeably in a lot of context, but some sources say that eml is a file format that originated with Microsoft Outlook. Is eml the official file suffix of an RFC822 ...
0
votes
1answer
93 views

Trouble with imaplib fetch formats: RFC822 unequel utf8?

I want to read an email messege which is in utf8 format. And this is not working with the following code: I guess i have to take a different format, but which and how? The output gives sth. like ...
0
votes
1answer
145 views

jQuery FullCalendar Date Storage Problem (RFC-822)

Is there a way to have the date that FullCalendar stores into the DB in a date or datetime format, or some other time format instead of varchar, so I can do a sort by date SQL call? Right now it's ...
0
votes
1answer
276 views

javamail InternetAddress RFC822 Format

I am validating a email address adheres to the RFC822 format by a creating email address object using javamail 1.4.4 'InternetAddress' Class. InternetAddress internetAdd = new ...
0
votes
1answer
1k views

Perl MIME::Parser and encoding in nested bodys (message/rfc_822)

arghhh, it's not easy. I'm trying to parse some mails with perl. Let's take an example: From: abc@def.de Content-Type: multipart/mixed; boundary="----_=_NextPart_001_01CBE273.65A0E7AA" To: ...
0
votes
2answers
466 views

convert RSS pubDate to SQLite date format iPhonne

I'm trying to build a RSS reader, but I'm having trouble with saving the date to CoreData. NSDateFormatter *df = [[NSDateFormatter alloc] init]; [df setDateFormat:@"yyyy-MM-dd"]; NSDate ...
0
votes
3answers
409 views

RFC822 to date format using asp

I try converting RFC822 date format (from rss) into a standard date/time format using asp3. Thanks
0
votes
2answers
132 views

How to do unfolding RFC 822

I am trying to write a vCard Parser and am having trouble unfolding lines. As you can see here: http://www.faqs.org/rfcs/rfc822.html look for "unfolding" it says that all the following are valid: ...
0
votes
2answers
506 views

How do I convert a mySQL timestamp into RFC-822 using Perl?

I have data stored in a mySQL table under the column type "timestamp" that I would like to output as an RFC-822 compliant date, for inclusion in a valid RSS feed. I know how I could simply output ...
0
votes
1answer
1k views

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 ...
-3
votes
2answers
209 views

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 ...