One Hat Cyber Team
Your IP :
3.137.180.196
Server IP :
103.133.214.160
Server :
Linux venus.ewebguru.net 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64
Server Software :
Apache/2
PHP Version :
8.1.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
dovecot
/
sieve
/
View File Name :
sieve-smtp.h
#ifndef SIEVE_SMTP_H #define SIEVE_SMTP_H #include "sieve-common.h" bool sieve_smtp_available (const struct sieve_script_env *senv); struct sieve_smtp_context; struct sieve_smtp_context *sieve_smtp_start (const struct sieve_script_env *senv, const struct smtp_address *mail_from); void sieve_smtp_add_rcpt (struct sieve_smtp_context *sctx, const struct smtp_address *rcpt_to); struct ostream *sieve_smtp_send (struct sieve_smtp_context *sctx); struct sieve_smtp_context *sieve_smtp_start_single (const struct sieve_script_env *senv, const struct smtp_address *rcpt_to, const struct smtp_address *mail_from, struct ostream **output_r); void sieve_smtp_abort (struct sieve_smtp_context *sctx); int sieve_smtp_finish (struct sieve_smtp_context *sctx, const char **error_r); #endif