/usr/include/claws-mail/gtk/headers.h is in libclaws-mail-dev 3.13.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /* all header names, with or without trailing colon */
static struct {
const gchar *header_name;
const gchar *header_name_w_colon;
/* Compiler thinks this is unused. State so and make it shut up.
* We do need this for header translations. */
} HEADERS[] __attribute__((unused)) = {
/* RFC2822 */
{ N_("Date"), N_("Date:") },
{ N_("From"), N_("From:") },
{ N_("Sender"), N_("Sender:") },
{ N_("Reply-To"), N_("Reply-To:") },
{ N_("To"), N_("To:") },
{ N_("Cc"), N_("Cc:") },
{ N_("Bcc"), N_("Bcc:") },
{ N_("Message-ID"), N_("Message-ID:") },
{ N_("In-Reply-To"), N_("In-Reply-To:") },
{ N_("References"), N_("References:") },
{ N_("Subject"), N_("Subject:") },
{ N_("Comments"), N_("Comments:") },
{ N_("Keywords"), N_("Keywords:") },
{ N_("Resent-Date"), N_("Resent-Date:") },
{ N_("Resent-From"), N_("Resent-From:") },
{ N_("Resent-Sender"), N_("Resent-Sender:") },
{ N_("Resent-To"), N_("Resent-To:") },
{ N_("Resent-Cc"), N_("Resent-Cc:") },
{ N_("Resent-Bcc"), N_("Resent-Bcc:") },
{ N_("Resent-Message-ID"), N_("Resent-Message-ID:") },
{ N_("Return-Path"), N_("Return-Path:") },
{ N_("Received"), N_("Received:") },
/* more */
{ N_("Newsgroups"), N_("Newsgroups:") },
{ N_("Followup-To"), N_("Followup-To:") },
{ N_("Delivered-To"), N_("Delivered-To:") },
{ N_("Seen"), N_("Seen:") },
{ N_("Status"), N_("Status:") },
{ N_("Face"), N_("Face:") },
{ N_("Disposition-Notification-To"), N_("Disposition-Notification-To:") },
{ N_("Return-Receipt-To"), N_("Return-Receipt-To:") },
{ N_("User-Agent"), N_("User-Agent:") },
{ N_("Content-Type"), N_("Content-Type:") },
{ N_("Content-Transfer-Encoding"), N_("Content-Transfer-Encoding:") },
{ N_("MIME-Version"), N_("MIME-Version:") },
{ N_("Precedence"), N_("Precedence:") },
{ N_("Organization"), N_("Organization:") },
{ N_("Mailing-List"), N_("Mailing-List:") },
{ N_("List-Post"), N_("List-Post:") },
{ N_("List-Subscribe"), N_("List-Subscribe:") },
{ N_("List-Unsubscribe"), N_("List-Unsubscribe:") },
{ N_("List-Help"), N_("List-Help:") },
{ N_("List-Archive"), N_("List-Archive:") },
{ N_("List-Owner"), N_("List-Owner:") },
{ N_("X-Label"), N_("X-Label:") },
{ N_("X-Mailer"), N_("X-Mailer:") },
{ N_("X-Status"), N_("X-Status:") },
{ N_("X-Face"), N_("X-Face:") },
{ N_("X-No-Archive"), N_("X-No-Archive:") },
/* some common logical names referring to real header names */
{ N_("In reply to"), N_("In reply to:") },
{ N_("To or Cc"), N_("To or Cc:") },
{ N_("From, To or Subject"), N_("From, To or Subject:") },
};
|