X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Finclude%2Fcitadel_dirs.h;h=86b7310dde466edcce257af84420c21c41f792c6;hb=6cd4b62a62098566ed73d7662d22e29fc509b9f3;hp=19856270a91d532b980823d0293920c0f8118818;hpb=f15df94047f9c4f9a2faddd4700ac24b46afd923;p=citadel.git diff --git a/citadel/include/citadel_dirs.h b/citadel/include/citadel_dirs.h index 19856270a..86b7310dd 100644 --- a/citadel/include/citadel_dirs.h +++ b/citadel/include/citadel_dirs.h @@ -9,11 +9,9 @@ extern char ctdl_home_directory[PATH_MAX]; /* all our directories */ extern char ctdl_bio_dir[PATH_MAX]; -extern char ctdl_bb_dir[PATH_MAX]; extern char ctdl_data_dir[PATH_MAX]; extern char ctdl_dspam_dir[PATH_MAX]; extern char ctdl_file_dir[PATH_MAX]; -extern char ctdl_hlp_dir[PATH_MAX]; extern char ctdl_shared_dir[PATH_MAX]; extern char ctdl_image_dir[PATH_MAX]; extern char ctdl_info_dir[PATH_MAX]; @@ -26,6 +24,7 @@ extern char ctdl_run_dir[PATH_MAX]; extern char ctdl_spool_dir[PATH_MAX]; extern char ctdl_netout_dir[PATH_MAX]; extern char ctdl_netin_dir[PATH_MAX]; +extern char ctdl_netdigest_dir[PATH_MAX]; extern char ctdl_nettmp_dir[PATH_MAX]; extern char ctdl_netcfg_dir[PATH_MAX]; extern char ctdl_bbsbase_dir[PATH_MAX]; @@ -37,12 +36,13 @@ extern char ctdl_utilbin_dir[PATH_MAX]; /* some of the frequently used files */ extern char file_citadel_control[PATH_MAX]; -extern char file_citadel_rc[PATH_MAX]; extern char file_citadel_config[PATH_MAX]; +extern char file_citadel_urlshorteners[PATH_MAX]; extern char file_lmtp_socket[PATH_MAX]; extern char file_lmtp_unfiltered_socket[PATH_MAX]; extern char file_arcq[PATH_MAX]; extern char file_citadel_socket[PATH_MAX]; +extern char file_citadel_admin_socket[PATH_MAX]; extern char file_mail_aliases[PATH_MAX]; extern char file_pid_file[PATH_MAX]; extern char file_pid_paniclog[PATH_MAX]; @@ -55,12 +55,16 @@ extern char file_guesstimezone[PATH_MAX]; extern char file_dpsam_conf[PATH_MAX]; extern char file_dspam_log[PATH_MAX]; -extern char file_funambol_msg[PATH_MAX]; - extern void calc_dirs_n_files(int relh, int home, const char *relhome, char *ctdldir, int dbg); -void assoc_file_name(char *buf, size_t n, - struct ctdlroom *qrbuf, const char *prefix); +extern int create_run_directories(long UID, long GUID); + +extern size_t assoc_file_name(char *buf, + size_t n, + struct ctdlroom *qrbuf, + const char *prefix); +extern FILE *create_digest_file(struct ctdlroom *room, int forceCreate); +extern void remove_digest_file(struct ctdlroom *room); #endif /* __CITADEL_DIRS_H */