'*************************************************************************
'
'      Author       : Esben Laursen (hyber@hyber.dk)
'      
'      Webpage      : http://www.hyber.dk or http://netsmsgw.sf.net
'
'      Notes        :
'
'      License      : This program is free software; you can redistribute
'                     it and/or modify it under the terms of the GNU
'                     General Public License as published by the Free
'                     Software Foundation version 2 of the License.
'
'*************************************************************************

Module basPublic

    Public Const gstrCriticalErr As String = "Critical Error happened in smtpSRV: "

    'smtpd
    Public Const gstrStartService As String = "Starting smtp service on (IP:Port): "
    Public Const gstrStopService As String = "Stopping smtp service now"
    Public Const gstrNewEmail As String = "Got new connection"
    Public Const gstrGotEmail As String = "Email received, congrats"
    Public Const gstrDeniedHost As String = "Denied SMTP connection from IP: "
    Public Const gstrAllowedHost As String = "Allowed SMTP connection from IP: "
    Public Const gstrFoundHost As String = "Client IP was found in Host list (true/false): "




    'smtpClientHandle

    Public Const gstrSMTPGot As String = "smtpd got: "
    Public Const gstrSMTPSend As String = "smtpd sending: "
    Public Const gstrSub As String = "Got subject: "
    Public Const gstrGotEmailAdr As String = "Got Email address: "
    Public Const gstrGotTlf As String = "Got phone number: "
    Public Const gstrUnknownPrio As String = "Unknown priority in email: "
    Public Const gstrFoundPrioNoParse As String = "Found the priority section in header, but it was a unknown priority. It was: "

End Module
