Qsmtp
0.30dev
|
functions to write delivery status information to qmail-rspawn More...
Functions | |
void | write_status_raw (const char *str, const size_t len) |
write raw status message to qmail-rspawn More... | |
void | write_status (const char *str) |
write status message to qmail-rspawn More... | |
void | write_status_m (const char **strs, const unsigned int count) |
write status messages to qmail-rspawn More... | |
Variables | |
int | statusfd = 1 |
functions to write delivery status information to qmail-rspawn
void write_status | ( | const char * | str | ) |
write status message to qmail-rspawn
str | the string to write |
This will include the trailing 0-byte in the output as qmail-rspawn awaits that as separator between the output fields.
void write_status_m | ( | const char ** | strs, |
const unsigned int | count | ||
) |
write status messages to qmail-rspawn
strs | the strings to write |
count | how many strings to write |
This will include the trailing 0-byte after the last entry in the output as qmail-rspawn awaits that as separator between the output fields.
void write_status_raw | ( | const char * | str, |
const size_t | len | ||
) |
write raw status message to qmail-rspawn
str | the data to write |
len | length of the data to write |