/usr/include/mailutils/mailer.h is in libmailutils-dev 1:3.4-1.
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 67 68 69 70 71 72 73 74 | /* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999-2001, 2005, 2007-2008, 2010-2012, 2014-2017 Free
Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#ifndef _MAILUTILS_MAILER_H
#define _MAILUTILS_MAILER_H
#include <mailutils/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/* During protocol traces, the data as well as headers will be dumped. */
#define MAILER_FLAG_DEBUG_DATA 0x0001
/* A url of NULL will cause the default to be used. */
extern int mu_mailer_create (mu_mailer_t *, const char *url);
extern int mu_mailer_create_from_url (mu_mailer_t *pmailer, mu_url_t url);
extern void mu_mailer_destroy (mu_mailer_t *);
extern int mu_mailer_open (mu_mailer_t, int flags);
extern int mu_mailer_close (mu_mailer_t);
extern int mu_mailer_send_message (mu_mailer_t, mu_message_t,
mu_address_t from, mu_address_t to);
struct timeval;
extern int mu_mailer_send_fragments (mu_mailer_t mailer, mu_message_t msg,
size_t fragsize, struct timeval *delay,
mu_address_t from, mu_address_t to);
/* Called to set or get the default mailer url. */
extern int mu_mailer_set_url_default (const char* url);
extern int mu_mailer_get_url_default (const char** url);
/* Accessor functions. */
extern int mu_mailer_get_property (mu_mailer_t, mu_property_t *);
int mu_mailer_set_property (mu_mailer_t, mu_property_t);
extern int mu_mailer_get_stream (mu_mailer_t, mu_stream_t *) MU_DEPRECATED;
extern int mu_mailer_get_streamref (mu_mailer_t, mu_stream_t *);
extern int mu_mailer_set_stream (mu_mailer_t, mu_stream_t);
extern int mu_mailer_get_observable (mu_mailer_t, mu_observable_t *);
extern int mu_mailer_get_url (mu_mailer_t, mu_url_t *);
/* Utility functions, primarily for use of implementing concrete mailers. */
/* A valid from mu_address_t contains a single address that has a qualified
email address. */
extern int mu_mailer_check_from (mu_address_t from);
/* A valid to mu_address_t contains 1 or more addresses, that are
qualified email addresses. */
extern int mu_mailer_check_to (mu_address_t to);
#ifdef __cplusplus
}
#endif
#endif /* _MAILUTILS_MAILER_H */
|