Module: TMail
- Extended by:
- TextUtils
- Defined in:
- lib/action_mailer/vendor/tmail-1.2.7/tmail/net.rb,
lib/action_mailer/vendor/tmail.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/mail.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/port.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/utils.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/base64.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/config.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/encode.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/header.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/address.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/mailbox.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/quoting.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/version.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/obsolete.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/interface.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/scanner_r.rb,
lib/action_mailer/vendor/tmail-1.2.7/tmail/attachments.rb
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. ++ :stopdoc:
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, SingleAddressHeader, StringPort, StructuredHeader, SyntaxError, TMailScanner, 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 Attribute Summary collapse
-
.KCODE ⇒ Object
Returns the value of attribute KCODE.
Class Method Summary collapse
-
.new_boundary ⇒ Object
(also: boundary)
Provides a new email boundary to separate parts of the email.
-
.new_message_id(fqdn = nil) ⇒ Object
(also: msgid, new_msgid)
Provides a new email message ID.
Methods included from TextUtils
atom_safe?, decode_RFC2231, decode_params, join_domain, message_id?, mime_encoded?, quote_atom, quote_boundary, quote_phrase, quote_token, quote_unquoted_bencode, quote_unquoted_name, time2str, timezone_string_to_unixtime, to_kcode, token_safe?, unquote
Class Attribute Details
.KCODE ⇒ Object
Returns the value of attribute KCODE.
40 41 42 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/encode.rb', line 40 def KCODE @KCODE end |
Class Method Details
.new_boundary ⇒ Object Also known as: boundary
68 69 70 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/utils.rb', line 68 def TMail.new_boundary 'mimepart_' + random_tag end |
.new_message_id(fqdn = nil) ⇒ Object Also known as: msgid, new_msgid
Provides a new email message ID. You can use this to generate unique email message id’s for your email so you can track them.
Optionally takes a fully qualified domain name (default to the current hostname returned by Socket.gethostname) that will be appended to the message ID.
For Example:
email. = TMail.
#=> "<[email protected]>"
email.to_s
#=> "Message-Id: <[email protected]>\n\n"
email. = TMail.("lindsaar.net")
#=> "<[email protected]>"
email.to_s
#=> "Message-Id: <[email protected]>\n\n"
88 89 90 91 |
# File 'lib/action_mailer/vendor/tmail-1.2.7/tmail/utils.rb', line 88 def TMail.( fqdn = nil ) fqdn ||= ::Socket.gethostname "<#{random_tag()}@#{fqdn}.tmail>" end |