Re: [qmailtoaster] Toaster on Debian

2008-10-03 Thread Martin Waschbuesch

Lucian,

Thanks for the link. It is indeed a 64bit Debian, so I will try with  
the Ubuntu stuff.


is it possible to use that server as a .deb repository for apt? Or do  
I just download the remote folder and go from there?


I believe in a different mail you mentioned that vqadmin still has  
some issues? What are these?


Thanks,

Martin

--
What a fool believes he sees, no wise man has the power to reason away...

Doobie Brothers


Zitat von Lucian Cristian [EMAIL PROTECTED]:


Martin Waschbüsch wrote:

Hi there,

I am new to the list and looking for hints and tips to install this
toaster on Debian?

Also, I am no programmer, but still willing to help. (be it testing or
translating, etc.)

Can anyone give me pointers where to start? I saw that some people
obviously have done some work creating .deb packages?

Thanks for your help!

Martin

--
The nice thing about being a celebrity is that when you bore people,
they think it's their fault.

Henry Kissinger

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


I;ve made teh debian and the ubuntu merge

http://78.97.223.51/qmail (it is slow for upload)

there is ubuntu64 that should work for debian64 too, if you need
assistance please don't hesitate

Regards
Lucian


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







This message was sent using IMP, the Internet Messaging Program.


binGkktZWHDkZ.bin
Description: Öffentlicher 	PGP-Schlüssel
-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [qmailtoaster] Toaster on Debian

2008-10-03 Thread Lucian Cristian
Martin Waschbuesch wrote:
 Lucian,

 Thanks for the link. It is indeed a 64bit Debian, so I will try with
 the Ubuntu stuff.

 is it possible to use that server as a .deb repository for apt? Or do
 I just download the remote folder and go from there?

 I believe in a different mail you mentioned that vqadmin still has
 some issues? What are these?

 Thanks,

 Martin

 

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
Hi, right now I tested the install on a lenny 32bit, later I'll try it
on 64bit
It should work on anything.
I changed the site structure, sorry I tried to make an apt repo in my
virtual machine but for now is not complete, the best way is to compile
yourself (so I can see if there are problems ;) )

vqadmin is not working because of config related to apache2, I tried
several hours but I couldn't configure it to accept the password, so it
remains on wishlist, or if you want play a bit with it and if is working
please show me the config file for apache

Jake told me about his project and I stopped working at vqadmin, but if
there is need of it...

regards
Lucian

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] Toaster on Debian

2008-10-03 Thread Jake Vickers

Lucian Cristian wrote:


Jake told me about his project and I stopped working at vqadmin, but if
there is need of it...
  


If all the paths for the domain info and control files are the same then 
it should work.
Contact me offlist and I'll see about getting a VM image of the deb 
version from you and can verify this.

Thanks.


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] import a list of users

2008-10-03 Thread Kyle Quillen

All,

I have  a listing of roughly 900 emails that I have to import to a toaster.  I 
already have the server up and running and I have the list in a comma seperated 
txt file but how do I do a bulk add of the users.

Thanks
Q


Re: [qmailtoaster] import a list of users

2008-10-03 Thread Eric Shubert
Kyle Quillen wrote:
 
 All,
 
 I have  a listing of roughly 900 emails that I have to import to a
 toaster.  I already have the server up and running and I have the list
 in a comma seperated txt file but how do I do a bulk add of the users.
 
 Thanks
 Q
 

Have you forgotten the wiki? ;)

-- 
-Eric 'shubes'


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Re: [qmailtoaster] import a list of users

2008-10-03 Thread Kyle Quillen
Yea i looked in there but the script below was all that I could find and that 
will just set the users passwords to a default pass how would I modify the 
script to look at the txt file for all the info?

thanks
q



#!/bin/sh
#
#  BULK USER ADDING FOR QMAIL TOASTER
#
# Created after I ran into an issue of creating 20,000 users on my toaster!
# Initial ideas come from a script that PakOgah [EMAIL PROTECTED]
# helped me with.
# Still very manual, but Work in Progress
#
# Suggestions to [EMAIL PROTECTED]
#
# Change a few variables and you are good to go
#
#
# Location of the users file
# Rememeber that the users file is in the format
# Firstname Lastname Username
USERS_FILE=/path/to/file.txt
# The mail domain to which users are created
#
MAILDOMAIN=@domain.com
# the vadduser command
QMAILADD=/home/vpopmail/bin/vadduser
# Select a default password for all users
PASS=mypass
#Specify the Default Quota_in_bytes for your Users
# 10 MB = 10 x 1024 x 1024
QUOTA=10485760
#Fun starts here No more variables to change below this line
cat ${USERS_FILE} | \
while read FIRSTNAME LASTNAME USERNAME
do
  echo adding the user: $USERNAME
$QMAILADD -q $QUOTA -c $FIRSTNAME $LASTNAME $USERNAME$MAILDOMAIN $PASS
done
#







-Original Message-
From: news on behalf of Eric Shubert
Sent: Fri 10/3/2008 12:07 PM
To: qmailtoaster-list@qmailtoaster.com
Subject:  Re: [qmailtoaster] import a list of users
 
Kyle Quillen wrote:
 
 All,
 
 I have  a listing of roughly 900 emails that I have to import to a
 toaster.  I already have the server up and running and I have the list
 in a comma seperated txt file but how do I do a bulk add of the users.
 
 Thanks
 Q
 

Have you forgotten the wiki? ;)

-- 
-Eric 'shubes'


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


winmail.dat-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [qmailtoaster] import a list of users

2008-10-03 Thread Steve Huff


On Oct 3, 2008, at 2:52 PM, Kyle Quillen wrote:

Yea i looked in there but the script below was all that I could find  
and that will just set the users passwords to a default pass how  
would I modify the script to look at the txt file for all the info?


well, if you populate the script in the format Firstname Lastname  
Username Password, then you can change the while line to


while read FIRSTNAME LASTNAME USERNAME PASS

and it'll do what you want.

-steve


#!/bin/sh
#
#  BULK USER ADDING FOR QMAIL TOASTER
#
# Created after I ran into an issue of creating 20,000 users on my  
toaster!
# Initial ideas come from a script that PakOgah [EMAIL PROTECTED] 


# helped me with.
# Still very manual, but Work in Progress
#
# Suggestions to [EMAIL PROTECTED]
#
# Change a few variables and you are good to go
#
#
# Location of the users file
# Rememeber that the users file is in the format
# Firstname Lastname Username
USERS_FILE=/path/to/file.txt
# The mail domain to which users are created
#
MAILDOMAIN=@domain.com
# the vadduser command
QMAILADD=/home/vpopmail/bin/vadduser
# Select a default password for all users
PASS=mypass
#Specify the Default Quota_in_bytes for your Users
# 10 MB = 10 x 1024 x 1024
QUOTA=10485760
#Fun starts here No more variables to change below this line
cat ${USERS_FILE} | \
while read FIRSTNAME LASTNAME USERNAME
do
 echo adding the user: $USERNAME
   $QMAILADD -q $QUOTA -c $FIRSTNAME $LASTNAME $USERNAME 
$MAILDOMAIN $PASS

done
#







-Original Message-
From: news on behalf of Eric Shubert
Sent: Fri 10/3/2008 12:07 PM
To: qmailtoaster-list@qmailtoaster.com
Subject:  Re: [qmailtoaster] import a list of users

Kyle Quillen wrote:


All,

I have  a listing of roughly 900 emails that I have to import to a
toaster.  I already have the server up and running and I have the  
list
in a comma seperated txt file but how do I do a bulk add of the  
users.


Thanks
Q



Have you forgotten the wiki? ;)

--
-Eric 'shubes'


-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 
winmail 
.dat 
-

QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--
If this were played upon a stage now, I could condemn it as an  
improbable fiction. - Fabian, Twelfth Night, III,v






smime.p7s
Description: S/MIME cryptographic signature


[qmailtoaster] Adding a dealy for smtp out traffic

2008-10-03 Thread Charles Ferland
Hi

We have a problem with some misconfigured web sites. Every 2-3 days, they use 
an internal Email listing to send a mailling list over the net. But they don't 
have any delay for sending emails and Qmail is getting blacklisted from many 
remote smtp server (hotmail, yahoo..) for X hours. Is it possible to add a 
delay for all smtp out connexion ?  I can limit # of simultanious connexion, 
max recipients by email but it will not block this kind of actions listed 
bellow.

Thank you for your help guys

Regards

(sorry for my sentences, English is not mine)



[qmailtoaster] qmailtoaster-plus-1.3.1-1.4.7 released

2008-10-03 Thread Eric Shubert
I just cut a new release, which contains some bug fixes related to unioned
sandbox. I recommend upgrading, which should be as simple as:
# yum -y upgrade qmailtoaster-plus
NJoy!
-- 
-Eric 'shubes'


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]