Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DMTP server seems not finished at all #154

Open
netcom-rs opened this issue May 29, 2022 · 0 comments
Open

DMTP server seems not finished at all #154

netcom-rs opened this issue May 29, 2022 · 0 comments

Comments

@netcom-rs
Copy link

netcom-rs commented May 29, 2022

looking at the sources, src/servers/dmtp/dmtp.c it seems that every command response is set to predefined values while doing nothing else than returning defined. Example is below. Question to @ladar : why are you advertising dark mail as secure while it is not working? Or you have another in-house version of dmtp that's not published? What is going on?

Best regards.

 * @brief	Process an DMTP MAIL command.
 * @param	con             the DMTP client connection issuing the command.
 * @return	This function returns no value.
 */
void dmtp_data(connection_t *con) {

        con_write_bl(con, "451 DATA FAILED - INTERNAL SERVER ERROR - PLEASE TRY AGAIN LATER\n", 65);
        dmtp_requeue(con);
        return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant