7513445d1a
Signed-off-by: Ian Moffett <ian@mirocom.org>
19 lines
365 B
C
19 lines
365 B
C
/*
|
|
* Copyright (c) 2026, Chloe Moffett
|
|
* Provided under the BSD-3 clause
|
|
*/
|
|
|
|
#ifndef LIBREMAIL_COMMON_H
|
|
#define LIBREMAIL_COMMON_H 1
|
|
|
|
/* Length of SHA256 hash in bytes */
|
|
#define SHA256_N_BYTES 32
|
|
|
|
/* Mailbox directory prefix */
|
|
#define MAILBOX_PREFIX "/var/mail"
|
|
|
|
/* Mailbox creation mode */
|
|
#define DEFAULT_MAILBOX_MODE 0600
|
|
|
|
#endif /* !LIBREMAIL_COMMON_H */
|