Results 1-25 of about 944 results found for '"RFC 2822"' in 0.33 seconds
 1 2345678910...

date.c
  /* Similar, but display nanoseconds. */
  TIME_SPEC_NS,
  /* Put these last, since they aren't valid for --rfc-3339.  */
  /* Display date and hour.  */
  TIME_SPEC_HOURS,
Language: C
License: GPL
(C) 1989-2007 Free Software Foundation, Inc.
LOC: 459
Savannah GNU : GNU Core Utilities (project search) : .../coreutils/coreutils/coreutils/src/date.c

CMailFile.class.php
            \brief      CMailFile
            \param      subject             sujet
            \param      to                  email destinataire (RFC 2822: "Nom prenom <email>[, ...]" ou "email[, ...]" ou ...  
            \param      from                email emetteur     (RFC 2822: "Nom prenom <email>[, ...]" ou "email[, ...]" ou ...  
            \param      msg                 message
Language: PHP
License: GPL
(C) 2000-2005 Rodolphe Quiedeville ...
LOC: 299
Savannah NonGNU : Dolibarr (project search) : .../dolibarr/dolibarr/htdocs/lib/CMailFile.class.php

parse822.c
    too intrusive? Maybe an apps business if it wants to?
  - Should we do best effort parsing, so parsing "sam@locahost, foo@"
    gets one address, or just say it is or it isn't in RFC format?
    Right now we're strict, we'll see how it goes.
  - parse Received: field?
Language: C
License: LGPL
(C) 1999, 2000, 2001, 2005, 2007 Free Software Foundation, Inc.
LOC: 1344
Savannah GNU : GNU Mail Utilities (project search) : .../mailutils/mailutils/mailutils/mailbox/parse822.c

MimeBodyPart.java
import javax.mail.Multipart;
import gnu.inet.util.GetSystemPropertyAction;
import gnu.mail.util.RFC2822OutputStream;
/**
 * A MIME body part.
Language: Java
License: GPL
(C) 2002, 2004, 2005 The Free Software Foundation
LOC: 637
Savannah GNU : Classpath Extensions (project search) : .../source/javax/mail/internet/MimeBodyPart.java

MimeMessage.java
import javax.mail.Session;
import gnu.inet.util.GetSystemPropertyAction;
import gnu.mail.util.RFC2822OutputStream;
/**
 * A MIME mail message.
Language: Java
License: GPL
(C) 2002, 2004, 2005 The Free Software Foundation
LOC: 1127
Savannah GNU : Classpath Extensions (project search) : .../source/javax/mail/internet/MimeMessage.java

StandardMailHeaders.java
 */
package org.jboss.mail.message;
/** This code has been copied from RFC2822Headers in JAMES, and 
 * defines constants for the header names defined in RFC 2822.
 * @author Kabir Khan
Language: Java
LOC: 27
SourceForge : JBoss.org (project search) : .../org/jboss/mail/message/StandardMailHeaders.java

ABNF.cs
          public const string DIGIT = @"0-9";
          /// <summary>
          /// RFC 2822 Section 2.2.2
          /// </summary>
          public const string WSP = @"\x20\x09";
Language: C#
(C) 2003-2006 Angel Marin
LOC: 42
Spider_20090505_inc : BugTracker.NET (project search) : .../0012/btnet/btnet_3_1_6.zip/SharpMime/ABNF.cs

ABNF.cs
          public const string DIGIT = @"0-9";
          /// <summary>
          /// RFC 2822 Section 2.2.2
          /// </summary>
          public const string WSP = @"\x20\x09";
Language: C#
(C) 2003-2006 Angel Marin
LOC: 42
Spider_20090529_inc : SharpWebMail - sharpwebmail beta (project search) : .../sharpwebmail/sharpmimetools-0.6.zip/sharpmimetools-0.6/src/ABNF.cs

RFC2822Headers.java
package org.apache.mailet;
/**
 * This utility class provides the set of header names explicitly defined in RFC 2822
 *
 */
Language: Java
License: AL20
LOC: 28
Spider_20090401_inc : Coadunation (project search) : .../src/org/apache/mailet/RFC2822Headers.java

mm-bodies.el
  (defvar mm-uu-binhex-decode-function))
(require 'mm-util)
(require 'rfc2047)
(require 'mm-encode)
;; 8bit treatment gets any char except: 0x32 - 0x7f, LF, TAB, BEL,
Language: Lisp
License: GPL
(C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
LOC: 225
Savannah GNU : emacs (project search) : .../emacs/emacs/lisp/gnus/mm-bodies.el

Makefile.PL
WriteMakefile (
  AUTHOR        => 'Casey West <casey@geeknest.com>',
  ABSTRACT      => "RFC 2822 Address Parsing",
  NAME          => 'Email::Address',
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
Language: Perl
LOC: 13
CPAN : Email__Address (project search) : .../CPAN/e/Email-Address/Email-Address/Makefile.PL

rfc2047.el
;;; rfc2047.el --- functions for encoding and decoding rfc2047 messages
;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
;;   2005, 2006, 2007 Free Software Foundation, Inc.
Language: Lisp
License: GPL
(C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
LOC: 912
Savannah GNU : emacs (project search) : .../emacs/emacs/lisp/gnus/rfc2047.el

test_inline_markup.py
["""\
See PEP 287 (pep-0287.txt),
and RFC 2822 (which obsoletes RFC822 and RFC-733).
""",
"""\
Language: Python
LOC: 119
BerliOS (SVN) : Docutils (project search) : .../docutils/test/test_readers/test_pep/test_inline_markup.py

test_inline_markup.py
["""\
See PEP 287 (pep-0287.txt),
and RFC 2822 (which obsoletes RFC822 and RFC-733).
""",
"""\
Language: Python
LOC: 119
Spider_bigsf001 : Endian Firewall Community (project search) : .../docutils-0.3.7/test/test_readers/test_pep/test_inline_markup.py

MailboxAddressCollection.cs
{
     /// <summary>
     /// Rfc 2822 3.4 mailbox-list. Syntax: mailbox *(',' mailbox).
     /// </summary>
     internal class MailboxAddressCollection : List<MailboxAddress>
Language: C#
LOC: 27
Spider_20090108_inc : Spam Buster - Graham Algorithm (project search) : .../SpamBuster1.0.zip/GrahamAlgorithm/Parser/Mime/MailboxAddressCollection.cs

MailboxAddressCollection.cs
{
     /// <summary>
     /// Rfc 2822 3.4 mailbox-list. Syntax: mailbox *(',' mailbox).
     /// </summary>
     internal class MailboxAddressCollection : List<MailboxAddress>
Language: C#
LOC: 27
Spider_20090108_inc : Spam Buster - Graham Algorithm (project search) : .../grahamalgorithm/SpamBuster-library1.0.zip/Parser/Mime/MailboxAddressCollection.cs

IHeaderField.cs
namespace Mews.Mime
{
    /// <summary>Represents a header field (see <a href="http://www.ietf.org/rfc/rfc2822.txt">RFC 2822</a> 2.2.).
    /// </summary>
    public interface IHeaderField : IVisitable<IHeaderField>
Language: C#
License: MSPL
Copyright 2008-2009 Andreas Huber Doenni
LOC: 7
CodePlex1 : Mews (project search) : .../svn/Mews/Mime/IHeaderField.cs

GroupAddress.cs
{
     /// <summary>
     /// RFC 2822 3.4. (Address Specification) Group address.
     /// <p/>
     /// Syntax: display-name':'[mailbox *(',' mailbox)]';'
Language: C#
LOC: 56
CodePlex1 : WorkTimeCard (project search) : .../Mail/Net/MIME/Old/GroupAddress.cs

UnstructuredHeaderField.cs
{
    using System;
    /// <summary>Represents an unstructured header field (see <a href="http://www.ietf.org/rfc/rfc2822.txt">RFC 2822</a>
    /// 2.2.1.).</summary>
    public sealed class UnstructuredHeaderField : HeaderField<UnstructuredHeaderField>
Language: C#
License: MSPL
Copyright 2008-2009 Andreas Huber Doenni
LOC: 16
CodePlex1 : Mews (project search) : .../svn/Mews/Mime/UnstructuredHeaderField.cs

GroupAddress.cs
{
     /// <summary>
     /// RFC 2822 3.4. (Address Specification) Group address.
     /// <p/>
     /// Syntax: display-name':'[mailbox *(',' mailbox)]';'
Language: C#
LOC: 37
Spider_20090108_inc : Spam Buster - Graham Algorithm (project search) : .../SpamBuster1.0.zip/GrahamAlgorithm/Parser/Mime/GroupAddress.cs

GroupAddress.cs
{
     /// <summary>
     /// RFC 2822 3.4. (Address Specification) Group address.
     /// <p/>
     /// Syntax: display-name':'[mailbox *(',' mailbox)]';'
Language: C#
LOC: 37
Spider_20090108_inc : Spam Buster - Graham Algorithm (project search) : .../grahamalgorithm/SpamBuster-library1.0.zip/Parser/Mime/GroupAddress.cs

test_rfc2822.py
#! /usr/bin/env python
# $Id: test_rfc2822.py 4564 2006-05-21 20:44:42Z fwiemann $
# Author: David Goodger <goodger@python.org>
# Copyright: This module has been placed in the public domain.
Language: Python
LOC: 272
BerliOS (SVN) : Docutils (project search) : .../docutils/test/test_readers/test_pep/test_rfc2822.py

test_rfc2822.py
# Copyright: This module has been placed in the public domain.
"""
Tests for RFC-2822 headers in PEPs (readers/pep.py).
"""
from __init__ import DocutilsTestSupport
Language: Python
LOC: 272
Spider_bigsf001 : Endian Firewall Community (project search) : .../docutils-0.3.7/test/test_readers/test_pep/test_rfc2822.py

Parser.py
# Author: Barry Warsaw, Thomas Wouters, Anthony Baxter
# Contact: email-sig@python.org
"""A parser of RFC 2822 and MIME email messages."""
import warnings
from cStringIO import StringIO
Language: Python
License: PSFL
(C) 2001-2004 Python Software Foundation
LOC: 69
Spider_20090108_inc : SpikeSource - Python (project search) : .../python/Python-2.4.1/Lib/email/Parser.py

Parser.py
# Author: Barry Warsaw, Thomas Wouters, Anthony Baxter
# Contact: email-sig@python.org
"""A parser of RFC 2822 and MIME email messages."""
import warnings
from cStringIO import StringIO
Language: Python
License: PSFL
(C) 2001-2004 Python Software Foundation
LOC: 69
Spider_20090228_inc : Spheral++ - Spheral (project search) : .../Python-2.4.3.tgz.---/Python-2.4.3/Lib/email/Parser.py

 1 2345678910...

Project Matches

rfc2822 - A Common Lisp implementation of RFC 2822

qbtnetwork - A set of network classes for Qt - This project contains a set of network classes...








About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us