]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: local: Renamed client_open_raw_mail() to lmtp_local_open_raw_mail().
authorStephan Bosch <stephan.bosch@dovecot.fi>
Mon, 18 Sep 2017 23:07:17 +0000 (01:07 +0200)
committerStephan Bosch <stephan.bosch@dovecot.fi>
Thu, 7 Dec 2017 23:08:15 +0000 (00:08 +0100)
src/lmtp/lmtp-local.c

index 2d4c496b3b5fcbafe5eedddcbd3231226053f421..213ce72ec76772f45c8c277c37c9ef67fb4de96b 100644 (file)
@@ -393,7 +393,9 @@ static uid_t client_deliver_to_rcpts(struct client *client,
        return first_uid;
 }
 
-static int client_open_raw_mail(struct client *client, struct istream *input)
+static int
+lmtp_local_open_raw_mail(struct client *client,
+                        struct istream *input)
 {
        static const char *wanted_headers[] = {
                "From", "To", "Message-ID", "Subject", "Return-Path",
@@ -428,7 +430,7 @@ void client_input_data_write_local(struct client *client, struct istream *input)
        struct mail_deliver_session *session;
        uid_t old_uid, first_uid;
 
-       if (client_open_raw_mail(client, input) < 0)
+       if (lmtp_local_open_raw_mail(client, input) < 0)
                return;
 
        session = mail_deliver_session_init();