com.fsck.k9.mail.Message.getReplyTo()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中com.fsck.k9.mail.Message.getReplyTo()方法的一些代码示例,展示了Message.getReplyTo()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Message.getReplyTo()方法的具体详情如下:
包路径:com.fsck.k9.mail.Message
类名称:Message
方法名:getReplyTo

Message.getReplyTo介绍

暂无

代码示例

代码示例来源:origin: k9mail/k-9

public String generateMessageId(Message message) {
  String hostname = null;
  Address[] from = message.getFrom();
  if (from != null && from.length >= 1) {
    hostname = from[0].getHostname();
  }
  if (hostname == null) {
    Address[] replyTo = message.getReplyTo();
    if (replyTo != null && replyTo.length >= 1) {
      hostname = replyTo[0].getHostname();
    }
  }
  if (hostname == null) {
    hostname = "email.android.com";
  }
  
  String uuid = generateUuid();
  return "<" + uuid + "@" + hostname + ">";
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyTo_should_prefer_from_ifOtherIsIdentity() throws Exception {
  when(message.getReplyTo()).thenReturn(REPLY_TO_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(LIST_POST_HEADER_VALUES);
  when(message.getFrom()).thenReturn(FROM_ADDRESSES);
  when(message.getRecipients(RecipientType.TO)).thenReturn(TO_ADDRESSES);
  when(account.isAnIdentity(any(Address[].class))).thenReturn(true);
  ReplyToAddresses result = replyToParser.getRecipientsToReplyTo(message, account);
  assertArrayEquals(TO_ADDRESSES, result.to);
  assertArrayEquals(EMPTY_ADDRESSES, result.cc);
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyAllTo_should_returnFromAndToAndCcRecipients() throws Exception {
  when(message.getReplyTo()).thenReturn(EMPTY_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(new String[0]);
  when(message.getFrom()).thenReturn(FROM_ADDRESSES);
  when(message.getRecipients(RecipientType.TO)).thenReturn(TO_ADDRESSES);
  when(message.getRecipients(RecipientType.CC)).thenReturn(CC_ADDRESSES);
  ReplyToAddresses recipientsToReplyAllTo = replyToParser.getRecipientsToReplyAllTo(message, account);
  assertArrayEquals(arrayConcatenate(FROM_ADDRESSES, TO_ADDRESSES, Address.class), recipientsToReplyAllTo.to);
  assertArrayEquals(CC_ADDRESSES, recipientsToReplyAllTo.cc);
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyTo_should_return_from_otherwise() throws Exception {
  when(message.getReplyTo()).thenReturn(EMPTY_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(new String[0]);
  when(message.getFrom()).thenReturn(FROM_ADDRESSES);
  ReplyToAddresses result = replyToParser.getRecipientsToReplyTo(message, account);
  assertArrayEquals(FROM_ADDRESSES, result.to);
  assertArrayEquals(EMPTY_ADDRESSES, result.cc);
  verify(account).isAnIdentity(result.to);
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyTo_should_prefer_replyTo_over_any_other_field() throws Exception {
  when(message.getReplyTo()).thenReturn(REPLY_TO_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(LIST_POST_HEADER_VALUES);
  when(message.getFrom()).thenReturn(FROM_ADDRESSES);
  ReplyToAddresses result = replyToParser.getRecipientsToReplyTo(message, account);
  assertArrayEquals(REPLY_TO_ADDRESSES, result.to);
  assertArrayEquals(EMPTY_ADDRESSES, result.cc);
  verify(account).isAnIdentity(result.to);
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyTo_should_prefer_listPost_over_from_field() throws Exception {
  when(message.getReplyTo()).thenReturn(EMPTY_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(LIST_POST_HEADER_VALUES);
  when(message.getFrom()).thenReturn(FROM_ADDRESSES);
  ReplyToAddresses result = replyToParser.getRecipientsToReplyTo(message, account);
  assertArrayEquals(LIST_POST_ADDRESSES, result.to);
  assertArrayEquals(EMPTY_ADDRESSES, result.cc);
  verify(account).isAnIdentity(result.to);
}

代码示例来源:origin: k9mail/k-9

public ReplyToAddresses getRecipientsToReplyTo(Message message, Account account) {
  Address[] candidateAddress;
  Address[] replyToAddresses = message.getReplyTo();
  Address[] listPostAddresses = ListHeaders.getListPostAddresses(message);
  Address[] fromAddresses = message.getFrom();
  if (replyToAddresses.length > 0) {
    candidateAddress = replyToAddresses;
  } else if (listPostAddresses.length > 0) {
    candidateAddress = listPostAddresses;
  } else {
    candidateAddress = fromAddresses;
  }
  boolean replyToAddressIsUserIdentity = account.isAnIdentity(candidateAddress);
  if (replyToAddressIsUserIdentity) {
    candidateAddress = message.getRecipients(RecipientType.TO);
  }
  return new ReplyToAddresses(candidateAddress);
}

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyAllTo_should_excludeIdentityAddresses() throws Exception {
  when(message.getReplyTo()).thenReturn(EMPTY_ADDRESSES);
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(new String[0]);
  when(message.getFrom()).thenReturn(EMPTY_ADDRESSES);
  when(message.getRecipients(RecipientType.TO)).thenReturn(TO_ADDRESSES);
  when(message.getRecipients(RecipientType.CC)).thenReturn(CC_ADDRESSES);
  Address excludedCcAddress = CC_ADDRESSES[1];
  Address excludedToAddress = TO_ADDRESSES[0];
  when(account.isAnIdentity(eq(excludedToAddress))).thenReturn(true);
  when(account.isAnIdentity(eq(excludedCcAddress))).thenReturn(true);
  ReplyToAddresses recipientsToReplyAllTo = replyToParser.getRecipientsToReplyAllTo(message, account);
  assertArrayEquals(arrayExcept(TO_ADDRESSES, excludedToAddress), recipientsToReplyAllTo.to);
  assertArrayEquals(arrayExcept(CC_ADDRESSES, excludedCcAddress), recipientsToReplyAllTo.cc);
}

代码示例来源:origin: k9mail/k-9

cv.put("cc_list", Address.pack(message.getRecipients(RecipientType.CC)));
cv.put("bcc_list", Address.pack(message.getRecipients(RecipientType.BCC)));
cv.put("reply_to_list", Address.pack(message.getReplyTo()));
cv.put("attachment_count", attachmentCount);
cv.put("internal_date", message.getInternalDate() == null

代码示例来源:origin: k9mail/k-9

@Test
public void getRecipientsToReplyAllTo_should_excludeDuplicates() throws Exception {
  when(message.getReplyTo()).thenReturn(REPLY_TO_ADDRESSES);
  when(message.getFrom()).thenReturn(arrayConcatenate(FROM_ADDRESSES, REPLY_TO_ADDRESSES, Address.class));
  when(message.getRecipients(RecipientType.TO)).thenReturn(arrayConcatenate(FROM_ADDRESSES, TO_ADDRESSES, Address.class));
  when(message.getRecipients(RecipientType.CC)).thenReturn(arrayConcatenate(CC_ADDRESSES, TO_ADDRESSES, Address.class));
  when(message.getHeader(ListHeaders.LIST_POST_HEADER)).thenReturn(new String[0]);
  ReplyToAddresses recipientsToReplyAllTo = replyToParser.getRecipientsToReplyAllTo(message, account);
  assertArrayContainsAll(REPLY_TO_ADDRESSES, recipientsToReplyAllTo.to);
  assertArrayContainsAll(FROM_ADDRESSES, recipientsToReplyAllTo.to);
  assertArrayContainsAll(TO_ADDRESSES, recipientsToReplyAllTo.to);
  int totalExpectedAddresses = REPLY_TO_ADDRESSES.length + FROM_ADDRESSES.length + TO_ADDRESSES.length;
  assertEquals(totalExpectedAddresses, recipientsToReplyAllTo.to.length);
  assertArrayEquals(CC_ADDRESSES, recipientsToReplyAllTo.cc);
}

相关文章