Module: TMail

Extended by:
TextUtils
Defined in:
lib/tmail/utils.rb,
lib/tmail/net.rb,
lib/tmail/mail.rb,
lib/tmail/port.rb,
lib/tmail/base64.rb,
lib/tmail/config.rb,
lib/tmail/encode.rb,
lib/tmail/header.rb,
lib/tmail/parser.rb,
lib/tmail/address.rb,
lib/tmail/mailbox.rb,
lib/tmail/quoting.rb,
lib/tmail/scanner.rb,
lib/tmail/version.rb,
lib/tmail/obsolete.rb,
lib/tmail/interface.rb,
lib/tmail/scanner_r.rb,
lib/tmail/attachments.rb,
ext/tmail/scanner_c/scanner_c.c

Overview

– Copyright © 1998-2003 Minero Aoki <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note: Originally licensed under LGPL v2+. Using MIT license for Rails with permission of Minero Aoki. ++

Defined Under Namespace

Modules: Base64, MailFlags, StrategyInterface, TextUtils, VERSION Classes: AddDate, AddMessageId, Address, AddressGroup, AddressHeader, Attachment, Config, ContentDispositionHeader, ContentTransferEncodingHeader, ContentTypeHeader, DateTimeHeader, Decoder, DeleteFields, Encoder, EncryptedHeader, FilePort, HeaderField, KeywordsHeader, Mail, Maildir, MaildirPort, MessageIdHeader, MhMailbox, MhPort, MimeEncodeAuto, MimeEncodeMulti, MimeEncodeSingle, MimeVersionHeader, Parser, Port, ReceivedHeader, ReferencesHeader, ReturnPathHeader, Scanner_C, Scanner_R, SingleAddressHeader, StringPort, StructuredHeader, SyntaxError, UNIXMbox, Unquoter, UnstructuredHeader

Constant Summary collapse

DEFAULT_CONFIG =
Config.new(false)
DEFAULT_STRICT_CONFIG =
Config.new(true)
MhLoader =

MhMailbox

MhMailbox
MboxLoader =

UNIXMbox

UNIXMbox
MaildirLoader =

Maildir

Maildir

Constants included from TextUtils

TextUtils::ATOM_UNSAFE, TextUtils::CONTROL_CHAR, TextUtils::MESSAGE_ID, TextUtils::MIME_ENCODED, TextUtils::MONTH, TextUtils::NKF_FLAGS, TextUtils::PHRASE_UNSAFE, TextUtils::RFC2231_ENCODED, TextUtils::TOKEN_UNSAFE, TextUtils::WDAY, TextUtils::ZONESTR_TABLE

Class Method Summary collapse

Methods included from TextUtils

atom_safe?, decode_RFC2231, decode_params, join_domain, message_id?, mime_encoded?, quote_atom, quote_boundary, quote_phrase, quote_token, time2str, timezone_string_to_unixtime, to_kcode, token_safe?, unquote

Class Method Details

.new_boundaryObject Also known as: boundary



37
38
39
# File 'lib/tmail/utils.rb', line 37

def TMail.new_boundary
  'mimepart_' + random_tag
end

.new_message_id(fqdn = nil) ⇒ Object Also known as: msgid, new_msgid



41
42
43
44
# File 'lib/tmail/utils.rb', line 41

def TMail.new_message_id( fqdn = nil )
  fqdn ||= ::Socket.gethostname
  "<#{random_tag()}@#{fqdn}.tmail>"
end