// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #pragma once namespace HM { class MessageData; class SURBLServer; class SURBL { public: SURBL(void); ~SURBL(void); bool Run(std::shared_ptr pSURBLServer, std::shared_ptr pMessageData); private: void CleanURL_(String &sURL) const; bool CleanHost_(String &sDomain) const; }; }