One Hat Cyber Team
Your IP :
3.12.120.194
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
/
View File Name :
mail-html2text.h
#ifndef MAIL_HTML2TEXT_H #define MAIL_HTML2TEXT_H enum mail_html2text_flags { MAIL_HTML2TEXT_FLAG_SKIP_QUOTED = 0x01 }; struct mail_html2text * mail_html2text_init(enum mail_html2text_flags flags); void mail_html2text_more(struct mail_html2text *ht, const unsigned char *data, size_t size, buffer_t *output); void mail_html2text_deinit(struct mail_html2text **ht); static inline bool mail_html2text_content_type_match(const char *content_type) { return strcasecmp(content_type, "text/html") == 0 || strcasecmp(content_type, "application/xhtml+xml") == 0; } #endif