15 lines
288 B
C++
15 lines
288 B
C++
#ifndef ____SMTP_HELP_h__
|
|
# define ____SMTP_HELP_h__
|
|
|
|
# include "SMTPCommand.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_HELP : public SMTPCommand {
|
|
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|