Home | History | Annotate | Download | only in email

Lines Matching defs:from

72      * Copy field-by-field from a "store" message to a "provider" message
80 Address[] from = message.getFrom();
89 if (from != null && from.length > 0) {
90 localMessage.mDisplayName = from[0].toFriendly();
133 if (from != null && from.length > 0) {
134 localMessage.mFrom = Address.pack(from);
154 * Copy attachments from MimeMessage to provider Message.
184 * @param part a single attachment part from POP or IMAP
192 // Transfer fields from mime format to provider format
200 // Incoming attachment: Try to pull size from disposition (if not downloaded yet)
334 Address[] from = Address.unpack(localMessage.mFrom);
335 if (from.length > 0) {
336 message.setFrom(from[0]);
439 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync).