arc/src/config.h

59 lines
1.2 KiB
C

/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
* @file config.h
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
#ifndef CONFIG_H_18E4DCB3_B446_424F_9E5E_06DC15FA40BA
#define CONFIG_H_18E4DCB3_B446_424F_9E5E_06DC15FA40BA
/** Default HTTP server port */
#ifndef CONFIG_HTTP_PORT
#define CONFIG_HTTP_PORT 8080
#endif
#ifndef CONFIG_LOG_TARGET
#define CONFIG_LOG_TARGET "output.log"
#endif
#ifndef CONFIG_SMTP_SERVER
#define CONFIG_SMTP_SERVER "mx.lowenware.com"
#endif
#ifndef CONFIG_SMTP_PORT
#define CONFIG_SMTP_PORT 465
#endif
#ifndef CONFIG_SMTP_USER
#define CONFIG_SMTP_USER "robot@lowenware.com"
#endif
#ifndef CONFIG_SMTP_PASS
#define CONFIG_SMTP_PASS "3HFzxiQYY9QJ6LN3" /* +){xA8}(mNF43B(~" */
#endif
#ifndef CONFIG_MAIL_FROM
#define CONFIG_MAIL_FROM CONFIG_SMTP_USER
#endif
#ifndef CONFIG_MAIL_TO
#define CONFIG_MAIL_TO "ik@lowenware.com"
#endif
#ifndef CONFIG_MAIL_SUBJECT
#define CONFIG_MAIL_SUBJECT "Feedback from website"
#endif
#endif /* !CONFIG_H */