X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Futillib%2Fcitadel_dirs.c;h=a884179541db2ed2bed371adb2b8f3f31314821a;hp=8037b6d128aa6bae2c74e47db7d09f828fd5a396;hb=57b37d4ed168b176d594bc149e5d16a1b9f0517a;hpb=20f386fa836709f3165102c34e113668ab73094a diff --git a/citadel/utillib/citadel_dirs.c b/citadel/utillib/citadel_dirs.c index 8037b6d12..a88417954 100644 --- a/citadel/utillib/citadel_dirs.c +++ b/citadel/utillib/citadel_dirs.c @@ -1,21 +1,15 @@ /* * citadel_dirs.c : calculate pathnames for various files used in the Citadel system * - * Copyright (c) 1987-2009 by the citadel.org team + * Copyright (c) 1987-2012 by the citadel.org team * - * 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; either version 3 of the License, or - * (at your option) any later version. + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include @@ -24,7 +18,6 @@ #include #include - #if TIME_WITH_SYS_TIME # include # include @@ -79,6 +72,7 @@ char file_lmtp_socket[PATH_MAX]=""; char file_lmtp_unfiltered_socket[PATH_MAX]=""; char file_arcq[PATH_MAX]=""; char file_citadel_socket[PATH_MAX]=""; +char file_citadel_admin_socket[PATH_MAX]=""; char file_mail_aliases[PATH_MAX]=""; char file_pid_file[PATH_MAX]=""; char file_pid_paniclog[PATH_MAX]=""; @@ -264,6 +258,11 @@ void calc_dirs_n_files(int relh, int home, const char *relhome, char *ctdldir, "%scitadel.socket", ctdl_run_dir); StripSlashes(file_citadel_socket, 0); + snprintf(file_citadel_admin_socket, + sizeof file_citadel_admin_socket, + "%scitadel-admin.socket", + ctdl_run_dir); + StripSlashes(file_citadel_admin_socket, 0); snprintf(file_pid_file, sizeof file_pid_file, "%scitadel.pid",