ok, I found the shell problem:
the DISt variable has to be in quotes, like this:
elif [ "${DIST}" == "openSUSE Leap" ]
Sun Jun 14 2020 18:05:29 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorBy "add the section for Open Susie," I meant, to the installer portion, because the var should be already set.
Sun Jun 14 2020 06:03:21 PM EDT from warbaby @ Uncensored Subject: sieve2_license errorOkay, I translated from Zee Deutch!
sh: Line 341: [: ==: unary operator expected.
sh: line 353: [: ==: unary operator expected.this is a shell flavor thing. You might try double quotes around those strings. but the script does appear to be working.
Also, there is no direct package installation support YET, for Open Susie in easy install. [You could create this patch as you are troubleshooting your install..]
341: if [ ${DIST} == 'RedHat' ]
353: elif [ ${DIST} == 'Debian' ]
367: else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
dieum.. you can see in the block beginning at 197
elif [ "${OS}" = "Linux" ] ; then
KERNEL=`uname -r`
if [ -f /etc/redhat-release ] ; then
DIST='RedHat'
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/SUSE-release ] ; then
DIST=`cat /etc/SUSE-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/SUSE-release | tr "\n" ' ' | sed s/.*=\ //`
elif [ -f /etc/mandrake-release ] ; then
DIST='Mandrake'
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/debian_version ] ; then
DIST='Debian'
REV=`cat /etc/debian_version`Could add a section for Open Susie.. etc..
But, it should not be difficult to get the script to bypass one check on something that is already there..
It would be best if you can find out why/where.. could be related to that unary operator issue..
Perhaps, double quotes or something are needed...
if you are getting past line 442,
442 ./configure --prefix=$SUPPORT || die
then you might take a look in
/tmp/citadel-build.2704/libsieve-2.2.7/src
Okay, I made that change and ran a lint check, it doesn't seem to affect anything else.
I'm going to encourage both you guys to complete the rest of the section, starting at at 367..
elif [ "${DIST}" == "openSUSE Leap" ]
then
## whatever all you need to do to get your packages installed..
### down to..
else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
die
fi
## Test this thoroughly! .
Then, make a single post for "Easy Install Update for openSUSE Leap"
.. this would really be helping others out!
Mon Jun 15 2020 04:13:25 PM EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errorok, I found the shell problem:
the DISt variable has to be in quotes, like this:
elif [ "${DIST}" == "openSUSE Leap" ]
Sun Jun 14 2020 18:05:29 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorBy "add the section for Open Susie," I meant, to the installer portion, because the var should be already set.
Sun Jun 14 2020 06:03:21 PM EDT from warbaby @ Uncensored Subject: sieve2_license errorOkay, I translated from Zee Deutch!
sh: Line 341: [: ==: unary operator expected.
sh: line 353: [: ==: unary operator expected.this is a shell flavor thing. You might try double quotes around those strings. but the script does appear to be working.
Also, there is no direct package installation support YET, for Open Susie in easy install. [You could create this patch as you are troubleshooting your install..]
341: if [ ${DIST} == 'RedHat' ]
353: elif [ ${DIST} == 'Debian' ]
367: else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
dieum.. you can see in the block beginning at 197
elif [ "${OS}" = "Linux" ] ; then
KERNEL=`uname -r`
if [ -f /etc/redhat-release ] ; then
DIST='RedHat'
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/SUSE-release ] ; then
DIST=`cat /etc/SUSE-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/SUSE-release | tr "\n" ' ' | sed s/.*=\ //`
elif [ -f /etc/mandrake-release ] ; then
DIST='Mandrake'
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/debian_version ] ; then
DIST='Debian'
REV=`cat /etc/debian_version`Could add a section for Open Susie.. etc..
But, it should not be difficult to get the script to bypass one check on something that is already there..
It would be best if you can find out why/where.. could be related to that unary operator issue..
Perhaps, double quotes or something are needed...
if you are getting past line 442,
442 ./configure --prefix=$SUPPORT || die
then you might take a look in
/tmp/citadel-build.2704/libsieve-2.2.7/src
my modified install script now works for openSUSE
I added in line 206:
elif [ -f /etc/os-release ] ; then
DIST='openSUSE'
// DIST=`cat /etc/os-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/os-release | tr "\n" ' ' | sed s/.*=\ //`
and around line 370
elif [ "${DIST}" == "openSUSE" ]
then
show_info 'You are on a OpenSuse-like system.'
zypper in -t pattern devel_basis </dev/tty || die
zypper in \
zlib-devel \
openldap2-devel \
libopenssl-devel \
libcurl-devel \
libical-devel \
libexpat-devel \
</dev/tty || die
of course, all other occurences of ${DIST} have to be in quotes, too
Mon Jun 15 2020 16:13:25 EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errorok, I found the shell problem:
the DISt variable has to be in quotes, like this:
elif [ "${DIST}" == "openSUSE Leap" ]
Sun Jun 14 2020 18:05:29 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorBy "add the section for Open Susie," I meant, to the installer portion, because the var should be already set.
Sun Jun 14 2020 06:03:21 PM EDT from warbaby @ Uncensored Subject: sieve2_license errorOkay, I translated from Zee Deutch!
sh: Line 341: [: ==: unary operator expected.
sh: line 353: [: ==: unary operator expected.this is a shell flavor thing. You might try double quotes around those strings. but the script does appear to be working.
Also, there is no direct package installation support YET, for Open Susie in easy install. [You could create this patch as you are troubleshooting your install..]
341: if [ ${DIST} == 'RedHat' ]
353: elif [ ${DIST} == 'Debian' ]
367: else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
dieum.. you can see in the block beginning at 197
elif [ "${OS}" = "Linux" ] ; then
KERNEL=`uname -r`
if [ -f /etc/redhat-release ] ; then
DIST='RedHat'
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/SUSE-release ] ; then
DIST=`cat /etc/SUSE-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/SUSE-release | tr "\n" ' ' | sed s/.*=\ //`
elif [ -f /etc/mandrake-release ] ; then
DIST='Mandrake'
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/debian_version ] ; then
DIST='Debian'
REV=`cat /etc/debian_version`Could add a section for Open Susie.. etc..
But, it should not be difficult to get the script to bypass one check on something that is already there..
It would be best if you can find out why/where.. could be related to that unary operator issue..
Perhaps, double quotes or something are needed...
if you are getting past line 442,
442 ./configure --prefix=$SUPPORT || die
then you might take a look in
/tmp/citadel-build.2704/libsieve-2.2.7/src
It's configurable.
citserver [-lLogFacility] [-d] [-f] [-D] [-tTraceFile] [-x Debug Component list] [-hHomeDir]
but.. there may be a difference in how you installed.. The default should be "mail" (mail.log, mail.err I believe)
but mine mostly goes to to syslog. [ps aux | grep "citserver" shows no arguments, so defaults.. ]
Also, consider the debug components.
Webcit did have a form to turn on/off logging of components, but I don't see it anymore. That may have been a few versions ago.
http://www.citadel.org/doku.php?id=documentation:cmdman:citserver
Mon Jun 15 2020 03:30:44 PM EDT from p.agsten @ Uncensored Subject: SMTP session logsHi All,
I just migrated to Citadel from hMailserver. So far I am satisfied. However, I cannot find the SMTP logs which detail issues with mail delivery. I have a couple of mail of one of my users bounce with 554 (Transaction failed). Normally, I would expect to find more detail from the recieving serverin some sort of mail.err or smtp log but this does not seem to exist. Also checked Citadel documentation but did not find anything.
Can someone pleae point me to the right place to look into.
Thanks,
Pit
now the installer itself works but the sieve2 problem is still there
checking for patch... /usr/bin/patch
/tmp/citadel-build.3081/citadel/missing: Unknown `--is-lightweight' option
Try `/tmp/citadel-build.3081/citadel/missing --help' for more information
configure: WARNING: 'missing' script is too old or missing
checking for icaltimezone_set_tzid_prefix in -lical... yes
checking sieve2.h usability... no
checking sieve2.h presence... no
checking for sieve2.h... no
configure: error: sieve2.h was not found and is required. More info: http://www.citadel.org/doku.php/installation:start
Citadel Easy Install is aborting.
The last few lines above this message may indicate what went wrong.
Linux openSUSE NAME="openSUSE Leap" VERSION="15.1" ID="opensuse-leap" ID_LIKE="suse opensuse" VERSION_ID="15.1" PRETTY_NAME="openSUSE Leap 15.1" ANSI_COLOR="0;32" CPE_NAME="cpe:/o:opensuse:leap:15.1" BUG_REPORT_URL="https://bugs.opensuse.org" HOME_URL="https://www.opensuse.org/" ( 4.12.14-lp151.28.52-default x86_64)
still no installer logfile in /tmp
Mon Jun 15 2020 16:47:32 EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errormy modified install script now works for openSUSE
I added in line 206:
elif [ -f /etc/os-release ] ; then
DIST='openSUSE'
// DIST=`cat /etc/os-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/os-release | tr "\n" ' ' | sed s/.*=\ //`
and around line 370
elif [ "${DIST}" == "openSUSE" ]
then
show_info 'You are on a OpenSuse-like system.'
zypper in -t pattern devel_basis </dev/tty || die
zypper in \
zlib-devel \
openldap2-devel \
libopenssl-devel \
libcurl-devel \
libical-devel \
libexpat-devel \
</dev/tty || die
of course, all other occurences of ${DIST} have to be in quotes, too
Mon Jun 15 2020 16:13:25 EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errorok, I found the shell problem:
the DISt variable has to be in quotes, like this:
elif [ "${DIST}" == "openSUSE Leap" ]
Sun Jun 14 2020 18:05:29 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorBy "add the section for Open Susie," I meant, to the installer portion, because the var should be already set.
Sun Jun 14 2020 06:03:21 PM EDT from warbaby @ Uncensored Subject: sieve2_license errorOkay, I translated from Zee Deutch!
sh: Line 341: [: ==: unary operator expected.
sh: line 353: [: ==: unary operator expected.this is a shell flavor thing. You might try double quotes around those strings. but the script does appear to be working.
Also, there is no direct package installation support YET, for Open Susie in easy install. [You could create this patch as you are troubleshooting your install..]
341: if [ ${DIST} == 'RedHat' ]
353: elif [ ${DIST} == 'Debian' ]
367: else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
dieum.. you can see in the block beginning at 197
elif [ "${OS}" = "Linux" ] ; then
KERNEL=`uname -r`
if [ -f /etc/redhat-release ] ; then
DIST='RedHat'
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/SUSE-release ] ; then
DIST=`cat /etc/SUSE-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/SUSE-release | tr "\n" ' ' | sed s/.*=\ //`
elif [ -f /etc/mandrake-release ] ; then
DIST='Mandrake'
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/debian_version ] ; then
DIST='Debian'
REV=`cat /etc/debian_version`Could add a section for Open Susie.. etc..
But, it should not be difficult to get the script to bypass one check on something that is already there..
It would be best if you can find out why/where.. could be related to that unary operator issue..
Perhaps, double quotes or something are needed...
if you are getting past line 442,
442 ./configure --prefix=$SUPPORT || die
then you might take a look in
/tmp/citadel-build.2704/libsieve-2.2.7/src
I encourage you to keep cracking away at it. It's probably just a path.. You might need to add symlink. I have some other stuff todo for a while, but am still monitoring the thread.
Mon Jun 15 2020 05:12:41 PM EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errornow the installer itself works but the sieve2 problem is still there
checking for patch... /usr/bin/patch
/tmp/citadel-build.3081/citadel/missing: Unknown `--is-lightweight' option
Try `/tmp/citadel-build.3081/citadel/missing --help' for more information
configure: WARNING: 'missing' script is too old or missing
checking for icaltimezone_set_tzid_prefix in -lical... yes
checking sieve2.h usability... no
checking sieve2.h presence... no
checking for sieve2.h... no
configure: error: sieve2.h was not found and is required. More info: http://www.citadel.org/doku.php/installation:start
Citadel Easy Install is aborting.
The last few lines above this message may indicate what went wrong.
Linux openSUSE NAME="openSUSE Leap" VERSION="15.1" ID="opensuse-leap" ID_LIKE="suse opensuse" VERSION_ID="15.1" PRETTY_NAME="openSUSE Leap 15.1" ANSI_COLOR="0;32" CPE_NAME="cpe:/o:opensuse:leap:15.1" BUG_REPORT_URL="https://bugs.opensuse.org" HOME_URL="https://www.opensuse.org/" ( 4.12.14-lp151.28.52-default x86_64)still no installer logfile in /tmp
Mon Jun 15 2020 16:47:32 EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errormy modified install script now works for openSUSE
I added in line 206:
elif [ -f /etc/os-release ] ; then
DIST='openSUSE'
// DIST=`cat /etc/os-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/os-release | tr "\n" ' ' | sed s/.*=\ //`
and around line 370
elif [ "${DIST}" == "openSUSE" ]
then
show_info 'You are on a OpenSuse-like system.'
zypper in -t pattern devel_basis </dev/tty || die
zypper in \
zlib-devel \
openldap2-devel \
libopenssl-devel \
libcurl-devel \
libical-devel \
libexpat-devel \
</dev/tty || die
of course, all other occurences of ${DIST} have to be in quotes, too
Mon Jun 15 2020 16:13:25 EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errorok, I found the shell problem:
the DISt variable has to be in quotes, like this:
elif [ "${DIST}" == "openSUSE Leap" ]
Sun Jun 14 2020 18:05:29 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorBy "add the section for Open Susie," I meant, to the installer portion, because the var should be already set.
Sun Jun 14 2020 06:03:21 PM EDT from warbaby @ Uncensored Subject: sieve2_license errorOkay, I translated from Zee Deutch!
sh: Line 341: [: ==: unary operator expected.
sh: line 353: [: ==: unary operator expected.this is a shell flavor thing. You might try double quotes around those strings. but the script does appear to be working.
Also, there is no direct package installation support YET, for Open Susie in easy install. [You could create this patch as you are troubleshooting your install..]
341: if [ ${DIST} == 'RedHat' ]
353: elif [ ${DIST} == 'Debian' ]
367: else
show_alert 'Easy Install does not yet know how to do this on your operating system.'
dieum.. you can see in the block beginning at 197
elif [ "${OS}" = "Linux" ] ; then
KERNEL=`uname -r`
if [ -f /etc/redhat-release ] ; then
DIST='RedHat'
PSEUDONAME=`cat /etc/redhat-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/redhat-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/SUSE-release ] ; then
DIST=`cat /etc/SUSE-release | tr "\n" ' '| sed s/VERSION.*//`
REV=`cat /etc/SUSE-release | tr "\n" ' ' | sed s/.*=\ //`
elif [ -f /etc/mandrake-release ] ; then
DIST='Mandrake'
PSEUDONAME=`cat /etc/mandrake-release | sed s/.*\(// | sed s/\)//`
REV=`cat /etc/mandrake-release | sed s/.*release\ // | sed s/\ .*//`
elif [ -f /etc/debian_version ] ; then
DIST='Debian'
REV=`cat /etc/debian_version`Could add a section for Open Susie.. etc..
But, it should not be difficult to get the script to bypass one check on something that is already there..
It would be best if you can find out why/where.. could be related to that unary operator issue..
Perhaps, double quotes or something are needed...
if you are getting past line 442,
442 ./configure --prefix=$SUPPORT || die
then you might take a look in
/tmp/citadel-build.2704/libsieve-2.2.7/src
Thank you warbaby for the excellent insight and help.
I will echo the request for our OpenSuSE friends to post the completed diffs to the Easy Install script to make it run properly on OpenSuSE. We will cheerfully accept any changes that are needed. It's just that we don't have anyone on the core team that uses this distribution so we don't normally test with it.
In the future we will have a Docker container for Citadel and I hope most people will use that.
Mon Jun 15 2020 05:21:10 PM EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorI encourage you to keep cracking away at it. It's probably just a path.. You might need to add symlink. I have some other stuff todo for a while, but am still monitoring the thread.
Thank you for the quick reply. :-)
You're welcome Art.. It's my pleasure. to help out.
My last thought on this one at the moment should be in a new thread though..
The /tmp/citadel-install.log file.. easyinstall is not in the main repos that I can see.. so I couldn't check the git log for that.
I think the bash trace will help out. But, I distinctly recall that handy message from easy install
"something has failed.. you might look in /tmp/citadel-install.log" or something like that.
Mon Jun 15 2020 10:49:34 PM EDT from IGnatius T Foobar @ Uncensored Subject: Re: sieve2_license errorThank you warbaby for the excellent insight and help.
I will echo the request for our OpenSuSE friends to post the completed diffs to the Easy Install script to make it run properly on OpenSuSE. We will cheerfully accept any changes that are needed. It's just that we don't have anyone on the core team that uses this distribution so we don't normally test with it.
In the future we will have a Docker container for Citadel and I hope most people will use that.
Mon Jun 15 2020 05:21:10 PM EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorI encourage you to keep cracking away at it. It's probably just a path.. You might need to add symlink. I have some other stuff todo for a while, but am still monitoring the thread.
Subject: Re: BerkeleyDB lib error ...-- sieve2_license error
bgerum2 it's ok. If that is the case then it's alright. It just came over the wrong way, you know, the road to heaven is littered with good intentions :) Be careful next time mate, cheers
Mon Jun 15 2020 15:41:31 EDT from bgerum2 @ Uncensored Subject: Re: BerkeleyDB lib error ...-- sieve2_license errorHi easy now, sorry, I just wanted to help you, I think both problems are connected so I edited the subject. But I probably should have started a new thread.
Subject: Re: BerkeleyDB lib error while installing with Easy Install
Thanks for your reply warbaby. I appreciate it.
So, I ran the "wget http://easyinstall.citadel.org/install...." from inside usr/local/ to download the easyinstall.sh but could find the file anywhere.
Where did wget save the easyinstall.sh file please?
Thanks
Mon Jun 15 2020 11:34:47 EDT from warbaby @ Uncensored Subject: Re: BerkeleyDB lib error while installing with Easy InstallI was talking strictly about easyinstall, the package retrieval for SUSE was left for another day.. I am not aware of packages for SUSE.. but that doesn't mean they don't exist.
try this..
wget http://easyinstall.citadel.org/install -O easyinstall.sh
chmod+x easyinstall.sh
edit the top line to
#!/bin/bash -x
run it and see what is happening..
You might be benefited by the other conversation also.
Perpetuating that hijacking was probably my fault.. I did edit the subject line when I replied, but yes it should have been a new thread.. My apology for that.
But.. You might both be having the same issue, (seems like a string/path thing..) and can benefit by working together to complete that section of easy install.
Subject: Re: BerkeleyDB lib error while installing with Easy Install
I would run that from your home directory or ~/bin if you have a "bin" in your home directory and path.
if you run
wget http://easyinstall.citadel.org/install
The file name will be 'install' and will appear in the directory you ran the command from. pwd
If you run
wget http://easyinstall.citadel.org/install -O easyinstall.sh chmod +x easyinstall.sh
That will help you identify the file later on, also so things like syntax highlighting work.
Tue Jun 16 2020 12:28:11 PM EDT from easy now @ Uncensored Subject: Re: BerkeleyDB lib error while installing with Easy Install
Thanks for your reply warbaby. I appreciate it.
So, I ran the "wget http://easyinstall.citadel.org/install...." from inside usr/local/ to download the easyinstall.sh but could find the file anywhere.
Where did wget save the easyinstall.sh file please?
Thanks
Mon Jun 15 2020 11:34:47 EDT from warbaby @ Uncensored Subject: Re: BerkeleyDB lib error while installing with Easy InstallI was talking strictly about easyinstall, the package retrieval for SUSE was left for another day.. I am not aware of packages for SUSE.. but that doesn't mean they don't exist.
try this..
wget http://easyinstall.citadel.org/install -O easyinstall.sh
chmod+x easyinstall.sh
edit the top line to
#!/bin/bash -x
run it and see what is happening..
You might be benefited by the other conversation also.
Perpetuating that hijacking was probably my fault.. I did edit the subject line when I replied, but yes it should have been a new thread.. My apology for that.
But.. You might both be having the same issue, (seems like a string/path thing..) and can benefit by working together to complete that section of easy install.
I was going to spin up a vps for this, but am finding openSUSE images hard to come by with my regular vps providers.. Also, all local resources to install it are tied up at the moment.
I'm mainly writing this to encourage those of you with an interest in it. openSUSE to keep pushing ahead on this..
It would be great to have this support in the installer.. But you guys are the only ones with a working openSUSE environment..
So, . . Keep up the good work! Just use basic troubleshooting skills, converse and share. I will try to help, but mainly.. It is in your hands...
Thanks,
-Warren
Subject: unsubscribe
How does one unsubscribe from this mail list?
Thank you.
http://uncensored.citadel.org/listsub
Tue Jun 16 2020 12:47:44 PM EDT from "juanhernandez98" <juanhernandez98@gmail.com> Subject: unsubscribeHello All,
How does one unsubscribe from this mail list?
Thank you.
I didn't work with vps yet, but here are openSUSE images:
https://download.opensuse.org/repositories/Cloud:/Images:/Leap_15.1/images/
Tue Jun 16 2020 12:45:48 EDT from warbaby @ Uncensored Subject: openSUSE and easyinstall..I was going to spin up a vps for this, but am finding openSUSE images hard to come by with my regular vps providers.. Also, all local resources to install it are tied up at the moment.
I'm mainly writing this to encourage those of you with an interest in it. openSUSE to keep pushing ahead on this..
It would be great to have this support in the installer.. But you guys are the only ones with a working openSUSE environment..
So, . . Keep up the good work! Just use basic troubleshooting skills, converse and share. I will try to help, but mainly.. It is in your hands...
Thanks,
-Warren
Hello everyone, I'm new to Citadel. I've installed and have it running on my Raspberry pi, I am able to recieve emails, but can't send, and I can't seem to get it working on any other apps, like outlook, thunderbird, etc. Anyone have any ideas?
I can see port 25 is being blocked, I'm trying to use the smart host feature (smtp.verizon.net) with no success.
I forced the installation of libsieve by inserting OLDSUM=does_not_exist in line 445 in the installer.
it did install fine:
gmake[2]: Entering directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
gmake[2]: Nothing to be done for 'install-exec-am'.
test -z "/usr/local/ctdlsupport/include" || /usr/bin/mkdir -p "/usr/local/ctdlsupport/include"
/usr/bin/install -c -m 644 'sieve2.h' '/usr/local/ctdlsupport/include/sieve2.h'
/usr/bin/install -c -m 644 'sieve2_error.h' '/usr/local/ctdlsupport/include/sieve2_error.h'
gmake[2]: Leaving directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
gmake[1]: Leaving directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
Complete.
but now I'm back with the license error:
checking sieve2.h usability... yes
checking sieve2.h presence... yes
checking for sieve2.h... yes
checking for sieve2_license in -lsieve... no
configure: error: libsieve was not found and is required. More info: http://www.citadel.org/doku.php/installation:start
Citadel Easy Install is aborting.
Tue Jun 16 2020 11:13:54 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorYou're welcome Art.. It's my pleasure. to help out.
My last thought on this one at the moment should be in a new thread though..
The /tmp/citadel-install.log file.. easyinstall is not in the main repos that I can see.. so I couldn't check the git log for that.
I think the bash trace will help out. But, I distinctly recall that handy message from easy install
"something has failed.. you might look in /tmp/citadel-install.log" or something like that.
Mon Jun 15 2020 10:49:34 PM EDT from IGnatius T Foobar @ Uncensored Subject: Re: sieve2_license errorThank you warbaby for the excellent insight and help.
I will echo the request for our OpenSuSE friends to post the completed diffs to the Easy Install script to make it run properly on OpenSuSE. We will cheerfully accept any changes that are needed. It's just that we don't have anyone on the core team that uses this distribution so we don't normally test with it.
In the future we will have a Docker container for Citadel and I hope most people will use that.
Mon Jun 15 2020 05:21:10 PM EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorI encourage you to keep cracking away at it. It's probably just a path.. You might need to add symlink. I have some other stuff todo for a while, but am still monitoring the thread.
Here's a script for you.. (should be safe eg.. "interactive", I did run it on my box, but you might want to ls -al those filenames first.. my eyes are really sore right now.. )
# cause-easyinstall-to-download-packages-again.sh
#!/bin/bash -x
rm -i /usr/local/ctdlsupport/etc/*.sum
rm -i /usr/local/citadel/*.sum
rm -i /usr/local/webcit/*.sum
This should probably be an option in easyinstall someday..
I'll reply separately on the configure script.
Wed Jun 17 2020 06:16:16 PM EDT from bgerum2 @ Uncensored Subject: Re: sieve2_license errorI forced the installation of libsieve by inserting OLDSUM=does_not_exist in line 445 in the installer.
it did install fine:
gmake[2]: Entering directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
gmake[2]: Nothing to be done for 'install-exec-am'.
test -z "/usr/local/ctdlsupport/include" || /usr/bin/mkdir -p "/usr/local/ctdlsupport/include"
/usr/bin/install -c -m 644 'sieve2.h' '/usr/local/ctdlsupport/include/sieve2.h'
/usr/bin/install -c -m 644 'sieve2_error.h' '/usr/local/ctdlsupport/include/sieve2_error.h'
gmake[2]: Leaving directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
gmake[1]: Leaving directory '/tmp/citadel-build.13687/libsieve-2.2.7/src/sv_include'
Complete.but now I'm back with the license error:
checking sieve2.h usability... yes
checking sieve2.h presence... yes
checking for sieve2.h... yes
checking for sieve2_license in -lsieve... no
configure: error: libsieve was not found and is required. More info: http://www.citadel.org/doku.php/installation:start
Citadel Easy Install is aborting.
Tue Jun 16 2020 11:13:54 EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorYou're welcome Art.. It's my pleasure. to help out.
My last thought on this one at the moment should be in a new thread though..
The /tmp/citadel-install.log file.. easyinstall is not in the main repos that I can see.. so I couldn't check the git log for that.
I think the bash trace will help out. But, I distinctly recall that handy message from easy install
"something has failed.. you might look in /tmp/citadel-install.log" or something like that.
Mon Jun 15 2020 10:49:34 PM EDT from IGnatius T Foobar @ Uncensored Subject: Re: sieve2_license errorThank you warbaby for the excellent insight and help.
I will echo the request for our OpenSuSE friends to post the completed diffs to the Easy Install script to make it run properly on OpenSuSE. We will cheerfully accept any changes that are needed. It's just that we don't have anyone on the core team that uses this distribution so we don't normally test with it.
In the future we will have a Docker container for Citadel and I hope most people will use that.
Mon Jun 15 2020 05:21:10 PM EDT from warbaby @ Uncensored Subject: Re: sieve2_license errorI encourage you to keep cracking away at it. It's probably just a path.. You might need to add symlink. I have some other stuff todo for a while, but am still monitoring the thread.