A RFC entitled "STANDARD FOR THE FORMAT OF ARPA INTERNET TEXT MESSAGES"
1
vote
2answers
30 views
Email Validation RFC 2821 using Java
I am working on email Validation using java having RFC 2821 in mind.
I have used following code to validate all my email address:
InternetAddress emailAddr = new InternetAddress(email);
...
2
votes
1answer
98 views
Sort XML by RFC-822 date format using XSL
Does anyone know of a way to do this kind of sorting in XSL?
Here's what I have so far but it only sorts by day and ignores the rest of the date.
<xsl:apply-templates select="item">
...
2
votes
1answer
64 views
How to parsing NSDate to RFC 822 always use in English?
I need to PUT a RESTful to server.
the Date must use like Sat, 19 Jan 2013 04:09:58 GMT.
in objc I wrote this:
NSDateFormatter* _GMTDateFormatter = [[NSDateFormatter alloc] init];
[_GMTDateFormatter ...
0
votes
2answers
354 views
Conversion 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 ...
0
votes
1answer
138 views
Java implementation of RFC5322 for email validation
I have a requirement to verify and validate email addresses as a service, I am hoping to validate an email address against the RFC 5322 spec. An RFC 822 compliant validation method exists inside the ...
5
votes
3answers
149 views
Is there a difference between MIME and content type?
While using the f12 tools on ie, when I request a web page, the response header has a content type. Can this also be called MIME type? Or is there a difference?
0
votes
2answers
326 views
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 ...
2
votes
2answers
164 views
Parsing e-mail-like headers (similar to RFC822)
Problem / Question
There is a database of bot information that I would like to parse. It is said to be similar to RFC822 messages.
Before I re-invent the wheel and write a parser of my own, I ...
1
vote
1answer
298 views
Notes Formula Language “@ValidateInternetAddress” Failing to Validate Properly?
We are using the following validation code to check for a valid email address formatting on a web form driving by Lotus Notes:
@If((@ValidateInternetAddress([Address821]; @ThisValue)!=""
| ...
1
vote
1answer
269 views
What are special characters in E-Mail-Headers and when to use quotes?
I'm trying to send and read e-mail using PHP. So far I found out, that I have to encode special characters using the function mb_encode_mimeheader(), But I don't have to encode spaces.
I also found ...
3
votes
1answer
1k views
Is there a “no-reply” email header?
I often see automated emails postfixed with a message like
Amazon:
*Please note: this e-mail was sent from an address that cannot accept incoming e-mail. Please use the link above if you need to ...
0
votes
0answers
54 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 ...
1
vote
1answer
176 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 ...
0
votes
1answer
451 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 ...
2
votes
1answer
431 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 ...
0
votes
1answer
475 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 ...
2
votes
2answers
326 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" ...
3
votes
1answer
174 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 ...
0
votes
1answer
303 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 ...
1
vote
1answer
1k 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 ...
1
vote
1answer
97 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
1answer
2k 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: ...
2
votes
3answers
691 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.
5
votes
5answers
637 views
Is root@[127.1] a syntactically valid e-mail address?
Is root@[127.1] a syntactically valid e-mail address?
Why? Why not?
1
vote
2answers
779 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
611 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 ...
0
votes
2answers
831 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
910 views
RFC822 to date format using asp
I try converting RFC822 date format (from rss) into a standard date/time format
using asp3.
Thanks
1
vote
1answer
457 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
1answer
240 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:
...
1
vote
3answers
853 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
237 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 ...
3
votes
3answers
747 views
3
votes
1answer
889 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 ...
5
votes
2answers
1k 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 ...
4
votes
1answer
955 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 ...
5
votes
4answers
5k 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 ...
2
votes
1answer
2k 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
652 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
2answers
207 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.
2
votes
1answer
1k 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
2answers
2k 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
2answers
693 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 ...
2
votes
3answers
1k 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 ...
9
votes
2answers
3k 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'
7
votes
1answer
8k 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 ...
0
votes
1answer
2k 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 ...
2
votes
1answer
1k 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
4k 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 ...
-3
votes
2answers
259 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 ...