| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/include/dovecot/ |
Upload File : |
#ifndef SUBMISSION_COMMON_H #define SUBMISSION_COMMON_H #include "lib.h" #include "array.h" #include "ioloop.h" #include "smtp-reply.h" #include "smtp-server.h" #include "submission-client.h" #include "submission-settings.h" #define URL_HOST_ALLOW_ANY "*" /* Maximum number of bytes added to a relayed message. This is used to calculate the SIZE capability based on what the backend server states. */ #define SUBMISSION_MAX_ADDITIONAL_MAIL_SIZE 1024 #define SUBMISSION_MAIL_DATA_MAX_INMEMORY_SIZE (1024*128) /* Maximum time to wait for QUIT reply from relay server */ #define SUBMISSION_MAX_WAIT_QUIT_REPLY_MSECS 2000 #ifdef EXPERIMENTAL_MAIL_UTF8 #define SUBMISSION_SUPPORTED_SMTP_CAPABILITIES \ (SMTP_CAPABILITY_AUTH | SMTP_CAPABILITY_PIPELINING | \ SMTP_CAPABILITY_SIZE | SMTP_CAPABILITY_ENHANCEDSTATUSCODES | \ SMTP_CAPABILITY_8BITMIME | SMTP_CAPABILITY_CHUNKING | \ SMTP_CAPABILITY_BINARYMIME | SMTP_CAPABILITY_BURL | \ SMTP_CAPABILITY_DSN | SMTP_CAPABILITY_VRFY | \ SMTP_CAPABILITY_SMTPUTF8) #else #define SUBMISSION_SUPPORTED_SMTP_CAPABILITIES \ (SMTP_CAPABILITY_AUTH | SMTP_CAPABILITY_PIPELINING | \ SMTP_CAPABILITY_SIZE | SMTP_CAPABILITY_ENHANCEDSTATUSCODES | \ SMTP_CAPABILITY_8BITMIME | SMTP_CAPABILITY_CHUNKING | \ SMTP_CAPABILITY_BINARYMIME | SMTP_CAPABILITY_BURL | \ SMTP_CAPABILITY_DSN | SMTP_CAPABILITY_VRFY) #endif typedef void submission_client_created_func_t(struct client **client); extern submission_client_created_func_t *hook_client_created; extern bool submission_debug; extern struct event_category event_category_submission; extern struct smtp_server *smtp_server; extern struct smtp_client *smtp_client; /* Sets the hook_client_created and returns the previous hook, which the new_hook should call if it's non-NULL. */ submission_client_created_func_t * submission_client_created_hook_set(submission_client_created_func_t *new_hook); void submission_refresh_proctitle(void); void client_handshake(struct client *client); #endif