Brilliant, thank you very much Xaf.
In and fully operational.
Appreciate your effort.

best wishes
  Tony White

Yea Computing Services
http://www.ycs.com.au
4 The Crescent
Yea
Victoria
Australia 3717

Telephone No's
VIC : 03 9008 5614
FAX : 03 9008 5610 (FAX2Email)



IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.

On 09/06/2013 19:44, xaf wrote:
|--> Eric Shubert, le 08/06/2013 18:05, a dit :
On 06/08/2013 08:07 AM, Tony White wrote:
Hello,
    It would seem that we are no longer able to add Numbers to the Full
Name field.
So all my users that have Phone Numbers with them are now rendered useless!

best wishes
    Tony White

On 08/06/2013 23:52, Tony White wrote:

Hi all,
   Using Qmail Toaster Admin I just tried to change
a clients password and got a dialog box that has
never popped up before stating...

Attention! This error was detected:
Please type the user FULL NAME.

   Huh?
All I changed was the password...

The command line version still works and the changes are reflected in
QTAdmi.
Appreciate any ideas here?

---------------------------------------------------------------------
Tony,

Will you please bring this up on the qmailadmin list? I'd like to know
what the upstream developers have to say about this, whether it's a bug
or a 'feature'. mailto:[email protected]

In the meantime, would someone care to look at the code? It shouldn't be
too big of a deal to fix. I'm slammed this weekend, otherwise I'd do it.

In any case, I expect we should be able to come up with a fix within a
couple weeks, so I wouldn't go losing your phone numbers, Tony.

Thanks.


the culprit is
/usr/share/toaster/vqadmin/html/mod_user.html

i attached corrected one

changes made
:25
if (!isValidLength(form.fname.value, 2, 30)) {
->
if (!isValidLength(form.fname.value, 2, 48)) {

(48 according to pw_gecos length in vpopmail database)

:107 (added maxlength, not required but user friendly)
<INPUT TYPE="TEXT" NAME="fname" SIZE="30" VALUE="$-UN" class="inputs">
->
<INPUT TYPE="TEXT" NAME="fname" MAXLENGTH="48" SIZE="30" VALUE="$-UN"
class="inputs">

mistaken or forgotten variables
:155
<INPUT TYPE="CHECKBOX" NAME="uimap" $-UC>
->
<INPUT TYPE="CHECKBOX" NAME="uimap" $-UI>

:162
<INPUT TYPE="CHECKBOX" NAME="upassc" $-UB>
->
<INPUT TYPE="CHECKBOX" NAME="upassc" $-UC>

:169
<INPUT TYPE="CHECKBOX" NAME="ubounce" $-US>
->
<INPUT TYPE="CHECKBOX" NAME="ubounce" $-UB>

:176
<INPUT TYPE="CHECKBOX" NAME="urelay">
->
<INPUT TYPE="CHECKBOX" NAME="urelay" $-US>


mod_user.html file in http://www.inter7.com/index.php?page=vqadmin
doesnot contain error
but does in rpm packages vqadmin-toaster-2.3.4and 2.3.7
(it's the same file from 2005)

xaf







---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to