ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
836
|
Tue Dec 7 16:15:28 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
Right. Number of options is limited to 100. |
837
|
Thu Dec 9 11:30:07 2004 |
| Guenter Nowak | Guenter.Nowqak@t-systems.at | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
> Right. Number of options is limited to 100.
hi, i found the MAX_N_LIST macro and increased it |
838
|
Thu Dec 9 11:30:49 2004 |
| Guenter Nowak | Guenter.Nowqak@t-systems.at | Bug report | All | 2.5.5-2 | Re: back button does not work |
> > hi
> > the back button/liunk does not work
> > if i click on an entry and then back, it does not work properly, i see the
> > same entry
> > if i click on the new button or the find button, and then back, it does
> > not work properly
> > mfg guenter
>
> Thanks for reporting that bug, it has been fixed in the curreny CVS version.
thanks |
839
|
Thu Dec 9 11:40:05 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
> > Right. Number of options is limited to 100.
> hi, i found the MAX_N_LIST macro and increased it
Please note that if you make it too big, you will get a stack overflow and
elogd will crash. |
844
|
Sun Dec 12 12:49:06 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Info | All | 2.5.5-2 | Re: external authentication possible? |
> The only common denominator that could possibly cover all contingencies would
> be LDAP authentication. One way of doing this in a more-or-less universal
> fashion is to offload the auth task from eLog itself and place the burden on
> Apache. This means figuring out how to get Apache to pass auth info to eLog
> when eLog operates behind Apache. In the end, anything that can use LDAP as an
> authentication mechanism (like AD) can host eLog - as long as eLog can glom off
> of Apache's ability to do the actual authenticating.
That sounds to me like a great idea. If anybody gets this working, people would be
grateful if this could be submitted to the "Contributions" section of this forum. |
845
|
Sun Dec 12 17:46:39 2004 |
| Neil Swartz | junkswartz@optonline.net | Bug report | Windows | 2.5.5-2 | Redirect to wrong hostname |
I have a computer that has a different idea of its name from the DNS
server. When I run ELOG and someone clicks "Search" I get a page not found.
I tried starting with "-n <hostname>", but elog still uses gethostname.
The example is that DNS says my machine is "abc.company.com" and netstat -
a says elog is listening on 8080 abc.personaldomain.com
Here is the code from elogd.c:
/* get host name for mail notification */
gethostname(host_name, sizeof(host_name));
phe = gethostbyname(host_name);
if (phe != NULL)
phe = gethostbyaddr(phe->h_addr, sizeof(int), AF_INET);
/* if domain name is not in host name, hope to get it from phe */
if (strchr(host_name, '.') == NULL && phe != NULL)
strcpy(host_name, phe->h_name);
I think you should be using tcp_hostname instead of gethostname if it is
specified. |
849
|
Wed Dec 15 15:42:13 2004 |
| Steve Jones | steve.jones@freescale.com | Comment | All | 2.5.5-2 | Re: external authentication possible? |
> > The only common denominator that could possibly cover all contingencies would
> > be LDAP authentication. One way of doing this in a more-or-less universal
> > fashion is to offload the auth task from eLog itself and place the burden on
> > Apache. This means figuring out how to get Apache to pass auth info to eLog
> > when eLog operates behind Apache. In the end, anything that can use LDAP as an
> > authentication mechanism (like AD) can host eLog - as long as eLog can glom off
> > of Apache's ability to do the actual authenticating.
>
> That sounds to me like a great idea. If anybody gets this working, people would be
> grateful if this could be submitted to the "Contributions" section of this forum.
Ah, you test me! Perhaps I will attempt to dig into this but I may have to leave the
integration up to you, Stefan. Seems that there would be two roads to go:
1> Move away from standalone and start to rely on Apache
2> Continue with the standalone theme and build in LDAP authentication (which could
also give you groups functions as well).
I think I would opt for <2> |
850
|
Wed Dec 15 18:19:31 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Comment | All | 2.5.5-2 | Re: external authentication possible? |
> Ah, you test me! Perhaps I will attempt to dig into this but I may have to leave the
> integration up to you, Stefan. Seems that there would be two roads to go:
> 1> Move away from standalone and start to rely on Apache
> 2> Continue with the standalone theme and build in LDAP authentication (which could
> also give you groups functions as well).
>
> I think I would opt for <2>
<1> would only make sense if the functionality could be completely implemented inside
Apache, without (much) modification of elog. Otherwise I agree that <2> would be more
following the general lines of elog. I was considering to implement PAM (pluggable
authorization module) support into elog, which is quite easy to implement and gives you
to power of having LDAP, Kerberos, Unix username, Windows NT Domain and much more. But
that would them be restricted to elog running under Linux (and Solaris I guess), since
I'm not aware of a PAM implementation under Windows.
Implementing LDAP directly into elog gives me the problem that we don't use LDAP
authentication at our institute (it's Kerberos in fact). So I would have to set up my own
LDAP server for testing, plus we at our institute don't have a direct benefit from that,
which would make it hard for me to justify to spend time on. |