Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1993 **/ /**********************************************************************/
/* ftpsvc.rc
Resource file for SMTP Service.
FILE HISTORY: KeithMo 07-Mar-1993 Created. JohnsonA 20-Oct-1995 Copied for SMTPSvc
*/
#include <windows.h> #include "smtpdata.h" #include "smtpmsg.rc"
#define RC_VERSION_FILE_DESCRIPTION "SMTP Service\0" #define RC_VERSION_INTERNAL_NAME "smtpsvc.dll\0" #define RC_VERSION_ORIGINAL_FILE_NAME "smtpsvc.dll\0"
#include <bldver.rc>
STRINGTABLE DISCARDABLE BEGIN SMTP_UNRECOG_COMMAND_CODE "Syntax error, command unrecognized" SMTP_SYNTAX_ERROR_CODE "Syntax error in parameters" SMTP_BAD_SEQUENCE_CODE "Bad sequence of commands"
SMTP_SYS_STATUS_CODE "System status-" SMTP_SERVICE_CLOSE_CODE "Service closing transmission channel" SMTP_SERVICE_READY_CODE "Service ready" SMTP_OK_CODE "Ok" SMTP_USER_NOT_LOCAL_CODE "User not local. Will forward" SMTP_MBOX_BUSY_CODE "Item not found" SMTP_MBOX_NOTFOUND_CODE "Item not found. No access" SMTP_ERROR_PROCESSING_CODE "Error in processing" SMTP_USERNOTLOCAL_CODE "User not local. Please try " SMTP_INSUFF_STORAGE_CODE "Insufficient system storage" SMTP_ACTION_ABORTED_CODE "Exceeded storage allocation" SMTP_ACTION_NOT_TAKEN_CODE "Mailbox name not allowed" SMTP_START_MAIL_CODE "End with CRLF" SMTP_TRANSACT_FAILED_CODE "Transaction failed" SMTP_SERVICE_UNAVAILABLE_CODE "Service not available. Closing connection" END
|