BARANTMail/__SMTP_EXPN.h

18 lines
321 B
C
Raw Normal View History

2020-02-29 19:25:13 -08:00
#ifndef ____SMTP_EXPN_h__
# define ____SMTP_EXPN_h__
# include "SMTPCommand.h"
namespace mail {
class SMTPServer;
class __SMTP_EXPN : public SMTPCommand {
public:
2022-07-08 19:30:00 -07:00
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
2020-02-29 19:25:13 -08:00
};
}
#endif