From: Stephan Bosch Date: Sat, 9 Feb 2019 12:41:40 +0000 (+0100) Subject: lib-smtp: smtp-client-command.h - Reformat the comments for the standard commands. X-Git-Tag: 2.3.9~784 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03750acdc99f83ed69608bebc57fc105eeff1dbf;p=thirdparty%2Fdovecot%2Fcore.git lib-smtp: smtp-client-command.h - Reformat the comments for the standard commands. --- diff --git a/src/lib-smtp/smtp-client-command.h b/src/lib-smtp/smtp-client-command.h index 6c5a04b4d6..6157a021ee 100644 --- a/src/lib-smtp/smtp-client-command.h +++ b/src/lib-smtp/smtp-client-command.h @@ -98,7 +98,7 @@ smtp_client_command_get_state(struct smtp_client_command *cmd) ATTR_PURE; * Standard commands */ -/* send NOOP */ +/* Send NOOP */ struct smtp_client_command * smtp_client_command_noop_submit_after( struct smtp_client_connection *conn, @@ -125,7 +125,7 @@ smtp_client_command_noop_submit( const struct smtp_reply *reply, typeof(context))), \ (smtp_client_command_callback_t *)callback, context) -/* send VRFY */ +/* Send VRFY */ struct smtp_client_command * smtp_client_command_vrfy_submit_after( struct smtp_client_connection *conn, @@ -155,7 +155,7 @@ smtp_client_command_vrfy_submit( const struct smtp_reply *reply, typeof(context))), \ param, (smtp_client_command_callback_t *)callback, context) -/* send RSET */ +/* Send RSET */ struct smtp_client_command * smtp_client_command_rset_submit_after( struct smtp_client_connection *conn, @@ -182,7 +182,7 @@ smtp_client_command_rset_submit( const struct smtp_reply *reply, typeof(context))), \ (smtp_client_command_callback_t *)callback, context) -/* send MAIL FROM:
*/ +/* Send MAIL FROM:
*/ struct smtp_client_command * smtp_client_command_mail_submit( struct smtp_client_connection *conn, @@ -232,8 +232,8 @@ smtp_client_command_rcpt_submit( to, params, \ (smtp_client_command_callback_t *)callback, context) -/* send message data using DATA or BDAT (preferred if supported) - handles DATA 354 response implicitly +/* Send message data using DATA or BDAT (preferred if supported). + This handles the DATA 354 response implicitly. */ struct smtp_client_command * smtp_client_command_data_submit_after(