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

How does the body of the request look like when making a call to gmail api for sending an email with attachment (multipart)?

Google documentation gave an example as below: POST /upload/gmail/v1/users/userId/messages/send?uploadType=multipart HTTP/1.1 Host: www.googleapis.com Authorization: Bearer your_auth_token Content-Type: multipart/related;…
BHARAT S
  • 21
  • 2
0
votes
1 answer

Can Clamd be relied upon to unpack RFC-822 format .eml files? It seems to do it

I'm using ClamAV, communicating via a Unix socket a la https://github.com/Elycin/php-clamav/. All working so far. My app picks up files from a folder. Each file contains RFC822-compliant content (sometimes you see these with extension .eml). I was…
tuck1s
  • 1,002
  • 9
  • 28
0
votes
2 answers

trying to send email with gmail api receive 'raw' RFC822 payload message string

I'm trying to perform a simple Reply to email with Gmail API. I'm receiving the following error: Google.GoogleApiException: 'Google.Apis.Requests.RequestError 'raw' RFC822 payload message string or uploading message via /upload/* URL required…
Tal Avissar
  • 10,088
  • 6
  • 45
  • 70
0
votes
3 answers

RFC822 to date format using asp

I try converting RFC822 date format (from rss) into a standard date/time format using asp3. Thanks
user186585
  • 512
  • 1
  • 8
  • 25
0
votes
1 answer

RFC822 compliant SMTP address

I'm getting mixed answers on whether the following SMTP address is RFC822 compliant: "Jane Doe" Is the above format compliant or should it only be: jane.doe@acme.com ? Looked at the following address specification from…
L4zl0w
  • 1,069
  • 4
  • 15
  • 42
0
votes
1 answer

Tika metadata from email misses date

I have two email testfiles: A file that has been created by using "save as" in Mac Mail (this creates a .txt file) A file that has been created by dragging an email from Mac Mail to the Desktop (this creates an .eml file) If I feed the files with…
Philipp
  • 55
  • 6
0
votes
1 answer

Decode a text string marked as RFC822_msg

I have had a request from management to pick out emails with a very long conversation in them. The goal being to get staff to "Just ring the customer" instead of endlessly emailing them. I have a system (Policy Patrol) that saves incoming and…
David P
  • 411
  • 7
  • 21
0
votes
0 answers

Opening message/rfc82 in PHP ticket system

Recently I developed a goodworking ticket-system in PHP. Works like charm, even with attachments. Now yesterday some tickets arrived with e-mails attached to it, as message/rfc822 files. Now the point is: can this files be read by PHP? Can they be…
Jan Willem
  • 1,280
  • 1
  • 9
  • 9
0
votes
1 answer

How to get just a message's preamble and epilogue using IMAP

MIME messages can have so-called preambles and epilogues (see RFC 2046), which are ‘discardable’ text parts outside of the MIME harness (boundaries). One application is to signal that the message is a multi-part MIME message to non-MIME capable…
equaeghe
  • 1,644
  • 18
  • 37
0
votes
2 answers

How to obtain the recipient list from email using IMAPClient in Python

I am using the IMAPClient library in Python. I am able to download the attached document in the email. I am interested in only Excel files. I am interested to extract the recipient list from the email. Any idea how to do it in Python ? Here is the…
Kiran
  • 8,034
  • 36
  • 110
  • 176
0
votes
1 answer

Convert email body output to to TEXT file in PHP

I want to convert the following email to a txt file using PHP script. im using pipe to mail function but getting gibberish when running the script. #!/usr/bin/php -q
siraj ali
  • 1
  • 3
0
votes
1 answer

antispam and RFC status codes

I am running a proxy antispam in my mailserver (ASSP 2.4). If a remote spammer email is blocked, the antispam permits to configure a reply with a 554 5.7.1 Message blocked due to spam content in the message or by sending a "false" '250 OK'…
gr68
  • 420
  • 1
  • 10
  • 25
0
votes
0 answers

How to Sort on rfc 822 timestamp format field in mongodb?

My aim is sort rfc 822 timestamp format which is stored in Mongodb as a pubdate field . I do not want to fetch all the records using PHP/Python and sort using it as lot of records will be required to be placed on memory. I am putting down an example…
user3136348
  • 55
  • 1
  • 10
0
votes
1 answer

Rails 4 how to validate email against rfc822

I'm using default rails EmailValidator to check my emails like this EmailValidator: class EmailValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless value =~ /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i …
Vladimir Dimitrov
  • 1,008
  • 7
  • 21
0
votes
0 answers

How to validate Email address to check RFC822 compliance using libCurl

I am trying to implement Email SMTP notifications in my application using libCurl in C. Before sending notification, i want to check for RFC 822 compliance on both FROM and TO addresses. Currently i am able to do it using JNI (JAVA …
Shiva
  • 114
  • 3
  • 12
1 2 3
8
9