BARANTMail/__SMTP_AUTH.h
2022-07-08 19:30:00 -07:00

19 lines
366 B
C++

#ifndef ____SMTP_AUTH_h__
# define ____SMTP_AUTH_h__
# include "SMTPCommand.h"
namespace mail {
class __SMTP_AUTH : public SMTPCommand {
public:
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
bool authLogin(coreutils::ZString userName, coreutils::ZString password);
};
}
#endif