]> granicus.if.org Git - neomutt/commitdiff
doxygen: drop/tidy simple comments
authorRichard Russon <rich@flatcap.org>
Sat, 17 Mar 2018 01:14:33 +0000 (01:14 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 20 Mar 2018 02:30:22 +0000 (02:30 +0000)
42 files changed:
conn/conn_globals.c
conn/getdomain.c
conn/sasl.c
conn/sasl_plain.c
conn/socket.c
conn/ssl.c
conn/ssl_gnutls.c
conn/tunnel.c
doxygen/doxygen.conf
envelope.c
history.c
imap/auth.c
imap/auth_anon.c
imap/auth_cram.c
imap/auth_gss.c
imap/auth_login.c
imap/auth_plain.c
imap/auth_sasl.c
imap/browse.c
imap/command.c
imap/imap.c
imap/message.c
imap/utf7.c
imap/util.c
mh.c
mutt/memory.c
mutt_menu.h
mx.h
ncrypt/crypt_mod_pgp_classic.c
ncrypt/crypt_mod_pgp_gpgme.c
ncrypt/crypt_mod_smime_classic.c
ncrypt/crypt_mod_smime_gpgme.c
ncrypt/cryptglue.c
ncrypt/gnupgparse.c
ncrypt/ncrypt.h
ncrypt/pgp.c
ncrypt/pgppacket.h
remailer.c
remailer.h
rfc1524.c
rfc2231.c
url.c

index 22de6a3d9b7f8c0049eeb19458a5a3e1732c2468..525fb2d2c904c7e46dd705a605f1a93496a2b9ba 100644 (file)
  * @page conn_globals Connection Global Variables
  *
  * These global variables are private to the connection library.
- *
- * | Global Variable        | NeoMutt Config
- * | :--------------------- | :------------------------
- * | #CertificateFile       | $certificate_file
- * | #ConnectTimeout        | $connect_timeout
- * | #EntropyFile           | $entropy_file
- * | #Preconnect            | $preconnect
- * | #SslCaCertificatesFile | $ssl_ca_certificates_file
- * | #SslCiphers            | $ssl_ciphers
- * | #SslClientCert         | $ssl_client_cert
- * | #SslMinDhPrimeBits     | $ssl_min_dh_prime_bits
- * | #Tunnel                | $tunnel
  */
 
 #include "config.h"
 #include <stdio.h>
 
-short ConnectTimeout = 0; /**< Config: $connect_timeout */
+short ConnectTimeout = 0; /**< Config: Timeout for a network connection (for IMAP, POP or SMTP) */
 
 #ifdef USE_SSL
-const char *CertificateFile = NULL; /**< Config: $certificate_file */
-const char *EntropyFile = NULL;     /**< Config: $entropy_file */
-const char *SslCiphers = NULL;      /**< Config: $ssl_ciphers */
-const char *SslClientCert = NULL;   /**< Config: $ssl_client_cert */
+const char *CertificateFile = NULL; /**< Config: File containing trusted certificates */
+const char *EntropyFile = NULL;     /**< Config: File containing random data to initialise SSL */
+const char *SslCiphers = NULL;      /**< Config: Ciphers to use when using SSL */
+const char *SslClientCert = NULL;   /**< Config: File containing client certificates */
 #ifdef USE_SSL_GNUTLS
-const char *SslCaCertificatesFile = NULL; /**< Config: $ssl_ca_certificates_file */
-short SslMinDhPrimeBits = 0;              /**< Config: $ssl_min_dh_prime_bits */
+const char *SslCaCertificatesFile = NULL; /**< Config: File containing trusted CA certificates */
+short SslMinDhPrimeBits = 0;              /**< Config: Minimum keysize for Diffie-Hellman key exchange */
 #endif
 #endif
 
 #ifdef USE_SOCKET
-const char *Preconnect = NULL; /**< Config: $preconnect */
-const char *Tunnel = NULL;     /**< Config: $tunnel */
+const char *Preconnect = NULL; /**< Config: Shell command to run before making a connection */
+const char *Tunnel = NULL;     /**< Config: Shell command to establish a tunnel */
 #endif
index ddde39ec1c4efc68f8f7ff8d66b79a1b582bbf91..c4729033ddb150f5fb40d0da32d14004826daa6e 100644 (file)
  * @page conn_getdomain DNS lookups
  *
  * DNS lookups
- *
- * | Function           | Description
- * | :----------------- | :-----------------------------------
- * | getdnsdomainname() | Lookup the host's name using DNS
  */
 
 #include "config.h"
index 214167aa862c79060e0563f599d016eeef9155ab..368f2e610ac160694fae2ca521651b575f6d8e67 100644 (file)
  * write. Thinking about it, the abstraction problem is that there is more in
  * Connection than there needs to be. Ideally it would have only (void*)data
  * and methods.
- *
- * | Function               | Description
- * | :--------------------- | :-----------------------------------
- * | mutt_sasl_client_new() | wrapper for sasl_client_new
- * | mutt_sasl_done()       | Invoke when processing is complete.
- * | mutt_sasl_interact()   | Perform an SASL interaction with the user
- * | mutt_sasl_setup_conn() | Set up an SASL connection
  */
 
 #include "config.h"
index e349eb4cfc07f1465a2d027feb69caeed54b354e..ea7a578d097ad8e04bae6768d237ff0544ea9b06 100644 (file)
  * @page conn_sasl_plain SASL plain authentication support
  *
  * SASL plain authentication support
- *
- * | Function              | Description
- * | :-------------------- | :-----------------------------------
- * | mutt_sasl_plain_msg() | Create an SASL command
  */
 
 #include "config.h"
index 19e2e35021fb1e4f57fa43e6ebd29d8b9b220fc6..00f0a5a03786eef1a828bbe44eb733068ef36e37 100644 (file)
  * @page conn_socket Low-level socket handling
  *
  * Low-level socket handling
- *
- * | Function               | Description
- * | :--------------------- | :-----------------------------------
- * | mutt_socket_close()    | Close a socket
- * | mutt_socket_open()     | Simple wrapper
- * | mutt_socket_poll()     | Checks whether reads would block
- * | mutt_socket_readchar() | simple read buffering to speed things up
- * | mutt_socket_readln_d() | Read a line from a socket
- * | mutt_socket_write_d()  | Write data to a socket
- * | raw_socket_close()     | Close a socket
- * | raw_socket_open()      | Open a socket
- * | raw_socket_poll()      | Checks whether reads would block
- * | raw_socket_read()      | Read data from a socket
- * | raw_socket_write()     | Write data to a socket
- * | socket_new_conn()      | allocate and initialise a new connection
  */
 
 #include "config.h"
index ee749ac12cf151f99e5b5d069cdfe3ee92296257..a74ea41adb2c2ced4d6409b02ae165c974a57f30 100644 (file)
  * @page conn_ssl Handling of OpenSSL encryption
  *
  * Handling of OpenSSL encryption
- *
- * | Function                | Description
- * | :---------------------- | :-----------------------------------
- * | mutt_ssl_socket_setup() | Set up the socket multiplexor
- * | mutt_ssl_starttls()     | Negotiate TLS over an already opened connection
  */
 
 #include "config.h"
index 5698bc5ea26f052dd03cba8958f6f125eed313ba..be1df16d2446ef8a4a70dddc5694630ad9dc780b 100644 (file)
  * @page conn_ssl_gnutls Handling of GnuTLS encryption
  *
  * Handling of GnuTLS encryption
- *
- * | Function                | Description
- * | :---------------------- | :-----------------------------------
- * | mutt_ssl_socket_setup() | Set up SSL socket mulitplexor
- * | mutt_ssl_starttls()     | Set up TLS multiplexor
  */
 
 #include "config.h"
index 174108bd81f7ab01736c4c2be1cf74f6444f30f3..640a79e940c3dc079f7275fa6b25cba89e95e9d4 100644 (file)
  * @page conn_tunnel Support for network tunnelling
  *
  * Support for network tunnelling
- *
- * | Function                   | Description
- * | :------------------------- | :-----------------------------------
- * | mutt_tunnel_socket_setup() | setups tunnel connection functions.
  */
 
 #include "config.h"
index a0b0324f5ea6ac4f669691d972c89142e937112c..c5b49b933fe267c89654ccc8e035b2c856dadd69 100644 (file)
@@ -1547,7 +1547,7 @@ HIDE_UNDOC_RELATIONS   = YES
 # set to NO
 # The default value is: NO.
 
-HAVE_DOT               = YES
+HAVE_DOT               = NO
 
 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
 # to run in parallel. When set to 0 doxygen will base this on the number of
index 264d83196259bc4267b718739027d9bd162f4ee1..eb490403f98b8456cad340df4f29f2401dbf7cb3 100644 (file)
  * @page envelope Representation of an email header (envelope)
  *
  * Representation of an email header (envelope)
- *
- * | Function              | Description
- * | :-------------------- | :---------------------------------
- * | mutt_env_cmp_strict() | Strictly compare two Envelopes
- * | mutt_env_free()       | Free an Envelope
- * | mutt_env_merge()      | Merge the headers of two Envelopes
- * | mutt_env_new()        | Create a new Envelope
- * | mutt_env_to_intl()    | Convert an Envelope's Address fields to Punycode format
- * | mutt_env_to_local()   | Convert an Envelope's Address fields to local format
  */
 
 #include "config.h"
index 483ce9a40d8e205d438fb9b70ba940fe967cc490..0c275f0bef4c23f259cb8ebb86aaea707ae5c48a 100644 (file)
--- a/history.c
+++ b/history.c
  *
  * Read/write command history from/to a file.
  *
- * | Data               | Description
- * | :----------------- | :--------------------------------------------------
- * | #History           | Number of history entries stored in memory
- * | #HistoryFile       | File in which to store all the histories
- * | #HistoryRemoveDups | Remove duplicate history entries
- * | #SaveHistory       | Number of history entries, per category, stored on disk
- *
- * | Function                 | Description
- * | :----------------------- | :---------------------------------------------------------
- * | mutt_hist_add()          | Add a string to a history
- * | mutt_hist_at_scratch()   | Is the current History position at the 'scratch' place?
- * | mutt_hist_init()         | Create a set of empty History ring buffers
- * | mutt_hist_next()         | Get the next string in a History
- * | mutt_hist_prev()         | Get the previous string in a History
- * | mutt_hist_read_file()    | Read the History from a file
- * | mutt_hist_reset_state()  | Move the 'current' position to the end of the History
- * | mutt_hist_save_scratch() | Save a temporary string to the History
- *
  * This history ring grows from 0..History, with last marking the
  * where new entries go:
  * ```
index e4f8771f1014569e1b654b87bddca29ad22f3a11..b4ab2fe4e02f031203f27d5b6259eed196866b01 100644 (file)
  * @page imap_auth IMAP authenticator multiplexor
  *
  * IMAP authenticator multiplexor
- *
- * | Function            | Description
- * | :------------------ | :-------------------------------------------------
- * | imap_authenticate() | Authenticate to an IMAP server
  */
 
 #include "config.h"
index 0adb57922d9dc88bb70507731884d672ce3ddac4..d37019061259296406bdd0f562694d1eab8b6bf9 100644 (file)
  * @page imap_auth_anon IMAP anonymous authentication method
  *
  * IMAP anonymous authentication method
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_auth_anon()   | Authenticate anonymously
  */
 
 #include "config.h"
index 7cc20ba5f0c63888345a55b473103ca6cfe00bd7..23c134e95d60d824ce05b6556a2326adbae22e95 100644 (file)
  * @page imap_auth_cram IMAP CRAM-MD5 authentication method
  *
  * IMAP CRAM-MD5 authentication method
- *
- * | Function             | Description
- * | :------------------- | :-------------------------------------------------
- * | imap_auth_cram_md5() | Authenticate using CRAM-MD5
  */
 
 #include "config.h"
index 0c4c1ae6efd2b8ab2c4f9d67e38d1b3e691b0707..45dac29904cd4ed3858a77547f82eb62d21a5f5e 100644 (file)
  * @page imap_auth_gss IMAP GSS authentication method
  *
  * IMAP GSS authentication method
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_auth_gss()    | GSS Authentication support
  */
 
 #include "config.h"
index 6f3f89d009165f8b4eec9584b880d27061334ce2..f6de06612650529c12a1ebbd0ecd46ea767b7045 100644 (file)
  * @page imap_auth_login IMAP login authentication method
  *
  * IMAP login authentication method
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_auth_login()  | Plain LOGIN support
  */
 
 #include "config.h"
index 2243c362e8909aeacc754ae86c4af7fd2f6a2546..4b0d6695f970f0f0e8d10dc4f9d07032e70dcb7c 100644 (file)
  * @page imap_auth_plain IMAP plain authentication method
  *
  * IMAP plain authentication method
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_auth_plain()  | SASL PLAIN support
  */
 
 #include "config.h"
index b802aa2d3d1aa21524b0168527cf948294d5c0c0..0b18d0f27316d2de7b099d17771bfa91c5f109c6 100644 (file)
  * @page imap_auth_sasl IMAP SASL authentication method
  *
  * IMAP SASL authentication method
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_auth_sasl()   | Default authenticator if available
  */
 
 #include "config.h"
index 97842bf60d7b06385ce519f0af94e8b9fa1b934d..2f1de74f0e0eded8ba9e230877762530df3aaed3 100644 (file)
  * @page imap_browse Mailbox browser
  *
  * GUI select an IMAP mailbox from a list
- *
- * | Function              | Description
- * | :-------------------- | :-------------------------------------------------
- * | imap_browse()         | IMAP hook into the folder browser
- * | imap_mailbox_create() | Create a new IMAP mailbox
- * | imap_mailbox_rename() | Rename a mailbox
  */
 
 #include "config.h"
index f8fea70d9d1187b46dbb7998b56ef3ceabd0700e..3778ec0b2b0e57cf47105c9cac213320fc8e2399 100644 (file)
  * @page imap_command Send/receive commands to/from an IMAP server
  *
  * Send/receive commands to/from an IMAP server
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_cmd_finish()  | Attempt to perform cleanup
- * | imap_cmd_idle()    | Enter the IDLE state
- * | imap_cmd_start()   | Given an IMAP command, send it to the server
- * | imap_cmd_step()    | Reads server responses from an IMAP command
- * | imap_cmd_trailer() | Extra information after tagged command response if any
- * | imap_code()        | Was the command successful
- * | imap_exec()        | Execute a command and wait for the response from the server
  */
 
 #include "config.h"
index 980b7edbc061deaab9d85f9fb85016ccca51328a..e2d48a1d9d09eb6d8f36149687ce22549696892f 100644 (file)
  *
  * Support for IMAP4rev1, with the occasional nod to IMAP 4.
  *
- * | Function                     | Description
- * | :--------------------------- | :-------------------------------------------------
- * | imap_access()                | Check permissions on an IMAP mailbox
- * | imap_buffy_check()           | Check for new mail in subscribed folders
- * | imap_check()                 | Check for new mail
- * | imap_check_mailbox()         | use the NOOP or IDLE command to poll for new mail
- * | imap_close_connection()      | Close an IMAP connection
- * | imap_complete()              | Try to complete an IMAP folder path
- * | imap_conn_find()             | Find an open IMAP connection
- * | imap_create_mailbox()        | Create a new mailbox
- * | imap_delete_mailbox()        | Delete a mailbox
- * | imap_exec_msgset()           | Prepare commands for all messages matching conditions
- * | imap_expunge_mailbox()       | Purge messages from the server
- * | imap_fast_trash()            | Use server COPY command to copy deleted messages to trash
- * | imap_has_flag()              | Does the flag exist in the list
- * | imap_logout()                | Gracefully log out of server
- * | imap_logout_all()            | close all open connections
- * | imap_mboxcache_free()        | Free the cached ImapStatus
- * | imap_mboxcache_get()         | Open an hcache for a mailbox
- * | imap_open_connection()       | Open an IMAP connection
- * | imap_read_literal()          | Read bytes bytes from server into file
- * | imap_rename_mailbox()        | Rename a mailbox
- * | imap_search()                | Find a matching mailbox
- * | imap_status()                | Get the status of a mailbox
- * | imap_subscribe()             | Subscribe to a mailbox
- * | imap_sync_message_for_copy() | Update server to reflect the flags of a single message
- *
- * | Data               | Description
- * | :----------------- | :--------------------------------------------------
- * | #mx_comp_ops       | Mailbox callback functions
- *
- * | Function                    | Description
- * | :-------------------------- | :-------------------------------------------------
- * | imap_check_mailbox_reopen() | Check for new mail (reopen mailbox if necessary)
- * | imap_close_mailbox()        | Clean up IMAP data in Context
- * | imap_commit_message_tags()  | Add/Change/Remove flags from headers
- * | imap_edit_message_tags()    | Prompt and validate new messages tags
- * | imap_open_mailbox()         | Open an IMAP mailbox
- * | imap_open_mailbox_append()  | Open an IMAP mailbox to append
- * | imap_open_new_message()     | Open an IMAP message
- * | imap_sync_mailbox()         | Sync all the changes to the server
+ * | Data         | Description
+ * | :----------- | :-------------------------
+ * | #mx_imap_ops | Mailbox callback functions
  */
 
 #include "config.h"
@@ -2778,7 +2740,7 @@ static int imap_commit_message_tags(struct Context *ctx, struct Header *h, char
 }
 
 /**
- * mx_comp_ops - Mailbox callback functions
+ * mx_imap_ops - Mailbox callback functions
  */
 struct MxOps mx_imap_ops = {
   .open = imap_open_mailbox,
index d7d2d1113a66b7ef23245f59f9d27a3e37acf17d..f9fa1653bc76d92651cf2697859e7a0a8b9480ce 100644 (file)
  * @page imap_message Manage IMAP messages
  *
  * Manage IMAP messages
- *
- * | Function                | Description
- * | :---------------------- | :-------------------------------------------------
- * | imap_append_message()   | Write an email back to the server
- * | imap_cache_clean()      | Delete all the entries in the message cache
- * | imap_cache_del()        | Delete an email from the body cache
- * | imap_close_message()    | Close an email
- * | imap_commit_message()   | Save changes to an email
- * | imap_copy_messages()    | Server COPY messages to another folder
- * | imap_fetch_message()    | Fetch an email from an IMAP server
- * | imap_free_header_data() | free ImapHeader structure
- * | imap_read_headers()     | Read headers from the server
- * | imap_set_flags()        | fill the message header according to the server flags
  */
 
 #include "config.h"
index c5c5e1ee7b206a9cec002a2b97894a0712a326ee..a5867587850c095c23a172c95263fcafad6b0488 100644 (file)
  * @page imap_utf7 UTF-7 Manipulation
  *
  * Convert strings to/from utf7/utf8
- *
- * | Function           | Description
- * | :----------------- | :-------------------------------------------------
- * | imap_utf_decode()  | Decode email from UTF-8 to local charset
- * | imap_utf_encode()  | Encode email from local charset to UTF-8
  */
 
 #include "config.h"
index 9e39e84c46b814dab7c99a8bff2d7b55eac0904c..1cec26850b7f1bff9823d9b0396f046b5395034b 100644 (file)
  * @page imap_util IMAP helper functions
  *
  * IMAP helper functions
- *
- * | Function                 | Description
- * | :----------------------- | :-------------------------------------------------
- * | imap_account_match()     | Compare two Accounts
- * | imap_allow_reopen()      | Allow re-opening a folder upon expunge
- * | imap_cachepath()         | Generate a cache path for a mailbox
- * | imap_clean_path()        | Cleans an IMAP path using imap_fix_path
- * | imap_continue()          | display a message and ask the user if they want to go on
- * | imap_disallow_reopen()   | Disallow re-opening a folder upon expunge
- * | imap_error()             | show an error and abort
- * | imap_expand_path()       | Canonicalise an IMAP path
- * | imap_fix_path()          | Fix up the imap path
- * | imap_free_idata()        | Release and clear storage in an ImapData structure
- * | imap_get_literal_count() | write number of bytes in an IMAP literal into bytes
- * | imap_get_parent()        | Get an IMAP folder's parent
- * | imap_get_parent_path()   | Get the path of the parent folder
- * | imap_get_qualifier()     | Get the qualifier from a tagged response
- * | imap_hcache_close()      | Close the header cache
- * | imap_hcache_del()        | Delete an item from the header cache
- * | imap_hcache_get()        | Get a header cache entry by its UID
- * | imap_hcache_namer()      | Generate a filename for the header cache
- * | imap_hcache_open()       | Open a header cache
- * | imap_hcache_put()        | Add an entry to the header cache
- * | imap_keepalive()         | poll the current folder to keep the connection alive
- * | imap_munge_mbox_name()   | Quote awkward characters in a mailbox name
- * | imap_mxcmp()             | Compare mailbox names, giving priority to INBOX
- * | imap_new_idata()         | Allocate and initialise a new ImapData structure
- * | imap_next_word()         | Find where the next IMAP word begins
- * | imap_parse_path()        | Parse an IMAP mailbox name into name,host,port
- * | imap_pretty_mailbox()    | Prettify an IMAP mailbox name
- * | imap_qualify_path()      | Make an absolute IMAP folder target
- * | imap_quote_string()      | quote string according to IMAP rules
- * | imap_unmunge_mbox_name() | Remove quoting from a mailbox name
- * | imap_unquote_string()    | equally stupid unquoting routine
- * | imap_wait_keepalive()    | Wait for a process to change state
  */
 
 #include "config.h"
diff --git a/mh.c b/mh.c
index 2614df88fa39056645e895f1dec4efb87e91427c..42c53b59caa7273171c2993cfd71e6caf3ee1720 100644 (file)
--- a/mh.c
+++ b/mh.c
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * This file contains routines specific to MH and ``maildir'' style
- * mailboxes.
- */
-
 #include "config.h"
 #include <ctype.h>
 #include <dirent.h>
index f2333fcf34ec5869979aafbe620f725073c07893..e82a59f586803997fdf98f05426d218e48766b2e 100644 (file)
@@ -45,7 +45,7 @@
  * @retval ptr Memory on the heap
  *
  * @note This function will never return NULL.
- *       It will print and error and exit the program.
+ *       It will print an error and exit the program.
  *
  * The caller should call mutt_mem_free() to release the memory
  */
@@ -93,7 +93,7 @@ void mutt_mem_free(void *ptr)
  * @retval ptr Memory on the heap
  *
  * @note This function will never return NULL.
- *       It will print and error and exit the program.
+ *       It will print an error and exit the program.
  *
  * The caller should call mutt_mem_free() to release the memory
  */
@@ -118,7 +118,7 @@ void *mutt_mem_malloc(size_t size)
  * @param size New size
  *
  * @note This function will never return NULL.
- *       It will print and error and exit the program.
+ *       It will print an error and exit the program.
  *
  * If the new size is zero, the block will be freed.
  */
index 363aebd9fb4bcf062ddb2650a2e43744bfb250a8..95d7b6085ebd7952b41c870c4a3d05096c832974 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * This file is named mutt_menu.h so it doesn't collide with ncurses menu.h
- */
-
 #ifndef _MUTT_MENU_H
 #define _MUTT_MENU_H
 
diff --git a/mx.h b/mx.h
index 0a27f41a04194cd2f0a67439c08c90a8dbe0f340..90f9cef38e899eaca4bcfabf17a3ede7ab6beafe 100644 (file)
--- a/mx.h
+++ b/mx.h
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * This header file contains prototypes for internal functions used by the
- * generic mailbox api.  None of these functions should be called directly.
- */
-
 #ifndef _MUTT_MX_H
 #define _MUTT_MX_H
 
index 595908b985c77d023817af7f9cea5ddb57a0d1ee..24a3d885945e5371e491540a4083fb2554c5bbd4 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-    This is a crytpo module wrapping the classic pgp code.
- */
-
 #include "config.h"
 #include <stdio.h>
 #include "crypt_mod.h"
index e1f827cb5728a736e135ee74bfeb3dc3e2dd2bcf..7999accc96ea1f2e2bf085d12ea390876af9bab7 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-    This is a crypto module wrapping the gpgme based pgp code.
- */
-
 #include "config.h"
 #include <stdio.h>
 #include "crypt_gpgme.h"
index 5ac34c32944baa423ec8f67bb0abd62f94ad07b7..04da2097cd4ee0e053683f4a31e29f3bb178b315 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-    This is a crytpo module wrapping the classic smime code.
- */
-
 #include "config.h"
 #include <stdio.h>
 #include "crypt_mod.h"
index b445decb200ca8c212f5fc63bae48f19c65e6ba7..e3e887eafa1be81ec6085f8fd3072d6608c4d9bd 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-    This is a crypto module wrapping the gpgme based smime code.
- */
-
 #include "config.h"
 #include <stdio.h>
 #include "crypt_gpgme.h"
index 8644cc3ef6cd1db8fbfc7854dd31b0351e695b40..3351f41a72a239d8be2d44835137ed0b66868ad1 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-   This file dispatches the generic crypto functions to the
-   implemented backend or provides dummy stubs.  Note, that some
-   generic functions are handled in crypt.c.
-*/
+/* This file dispatches the generic crypto functions to the implemented backend
+ * or provides dummy stubs.  Note, that some generic functions are handled in
+ * crypt.c.
+ */
 
-/* Note: This file has been changed to make use of the new module
  system.  Consequently there's a 1:1 mapping between the functions
-   contained in this file and the functions implemented by the crypto
  modules.  */
+/* Note: This file has been changed to make use of the new module system.
* Consequently there's a 1:1 mapping between the functions contained in this
+ * file and the functions implemented by the crypto modules.
+ */
 
 #include "config.h"
 #include <stdio.h>
index a3bc89233013d0a9f658fe092573e16021361d84..88e208870046b6419a98068aabfc97db381cf0f4 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * NOTE
- *
- * This code used to be the parser for GnuPG's output.
+/* NOTE: This code used to be the parser for GnuPG's output.
  *
  * Nowadays, we are using an external pubring lister with PGP which mimics
  * gpg's output format.
index d30a90445b8769c8c7c04ec89bc6aa87c7643fd6..a22158a5b7ca962d9f0c9e189013c781345dcc4c 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
-   Common definitions and prototypes for the crypt functions. They are
-   all defined in crypt.c and cryptglue.c
-*/
-
 #ifndef _NCRYPT_NCRYPT_H
 #define _NCRYPT_NCRYPT_H
 
index 965320ca12e46dff3c2ff0036b55adabb845d633..7caddcf351dfbe3ba73efce8ef37cd1e58d95a39 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * This file contains all of the PGP routines necessary to sign, encrypt,
- * verify and decrypt PGP messages in either the new PGP/MIME format, or
- * in the older Application/Pgp format.  It also contains some code to
- * cache the user's passphrase for repeat use when decrypting or signing
- * a message.
+/* This file contains all of the PGP routines necessary to sign, encrypt,
+ * verify and decrypt PGP messages in either the new PGP/MIME format, or in the
+ * older Application/Pgp format.  It also contains some code to cache the
+ * user's passphrase for repeat use when decrypting or signing a message.
  */
 
 #include "config.h"
index 34686bf19ea00436dfcfe2c4e971056df0df1d13..603d9757dc3455d985ab8cd993248ad57a2af5e1 100644 (file)
@@ -20,9 +20,8 @@
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * Definitions for a rudimentary PGP packet parser which is shared
- * by neomutt proper and the PGP public key ring lister.
+/* Definitions for a rudimentary PGP packet parser which is shared by neomutt
+ * proper and the PGP public key ring lister.
  */
 
 #ifndef _NCRYPT_PGPPACKET_H
index 45220b8c1c0e3c1e439a2f0e1a68b82234b51419..252e4463233107e347b5629edfb85ab199803f52 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * Mixmaster support for NeoMutt
- */
-
 #include "config.h"
 #include <fcntl.h>
 #include <limits.h>
index fbf93bb308975cc676240909fd443fcb5085215e..fb49a2829a083d877655b6dd581f1dad9a271d7b 100644 (file)
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * Mixmaster support for NeoMutt
- */
-
 #ifndef _MUTT_REMAILER_H
 #define _MUTT_REMAILER_H
 
index 53023baa0c541fe0ff0364d40130099e6dbf266a..63bc679e04b51d2b937ed99054fcbcbd4969b639 100644 (file)
--- a/rfc1524.c
+++ b/rfc1524.c
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * rfc1524 defines a format for the Multimedia Mail Configuration, which
- * is the standard mailcap file format under Unix which specifies what
- * external programs should be used to view/compose/edit multimedia files
- * based on content type.
+/* RFC1524 defines a format for the Multimedia Mail Configuration, which is the
+ * standard mailcap file format under Unix which specifies what external
+ * programs should be used to view/compose/edit multimedia files based on
+ * content type.
  *
  * This file contains various functions for implementing a fair subset of
- * rfc1524.
+ * RFC1524.
  */
 
 #include "config.h"
index 3609ea2ba24007a0ab122f77e5a454e4fa990e5d..8c774a4869ab29782c7b4e3b76936b9a725f2830 100644 (file)
--- a/rfc2231.c
+++ b/rfc2231.c
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * Yet another MIME encoding for header data.  This time, it's
- * parameters, specified in RFC2231, and modeled after the
- * encoding used in URLs.
+/* Yet another MIME encoding for header data.  This time, it's parameters,
+ * specified in RFC2231, and modeled after the encoding used in URLs.
  *
- * Additionally, continuations and encoding are mixed in an, errrm,
- * interesting manner.
+ * Additionally, continuations and encoding are mixed in an, errrm, interesting
+ * manner.
  */
 
 #include "config.h"
diff --git a/url.c b/url.c
index 262ec9130fc7a5373acd21b993b423b505148054..2ac66cf0408e093cc568bc722057785251c70cf2 100644 (file)
--- a/url.c
+++ b/url.c
  * this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/*
- * A simple URL parser.
- */
-
 #include "config.h"
 #include <ctype.h>
 #include <stdio.h>