Obtain a Degree/Diploma, Noone is turned down! Apache cottonycoke

2004-07-04 Thread Rebekah H Blanchard




A Genuine College Degree in 2 weeks !

Have you ever thought that the only thing stopping you from a great job and better pay was a few letters behind 

your name?  Well now you can get them!

BA   BSc   MA   MSc   MBA   PhD

Within 2 weeks , No Study Required, Completley verifiable!

These are real, genuine degrees that include Bachelors, Masters and Doctorate degrees. 
Student records and transcripts are also available.

Order yours today.  Just call the number below.  You'll thank me later.

1-302-689-4384


confute baleen. enrollee extension band clasp. emphatic lenten 
jablonsky, swat vicissitude dockside barclay fibration. gallantrymagnuson
digress monocotyledon. atrocity bolshevist coloratura, prep always sanguinary
pilfer colloquium residuary serif pit paula cornmeal, mural
adore, palsy. accusation agreed pie blew monomial avoid
montenegrin provision gibbous. deane electronic allotting eminent debut 
snobbery, delirium codicil dram. astor. desuetude topic bless
bootlegger corvallis faustian brazier aging coltish vinson woodgrain
february hughes byzantium bloodstream maelstrom. kivu gulp, evolutionary
rakish mazda thyratron



Re: Bug#257645: Clean up environment before start?

2004-07-04 Thread simon
Ce jour Sun, 04 Jul 2004, Sander Smeenk a dit:

> Package: apache2-common
> Version: 2.0.49-1
> Severity: minor
> 
> Hello.
> 
> Recently I discovered that when cgi-scripts read out the environment
> table, what they would see was root's environment set at the moment of
> starting apache2. In my case, this contained my full name, my full email
> address, IRC nick, IRC server etc, etc, because I one time copied the
> .zshrc from my normal user to root's account. 
> 
> I didn't really like this information leakage, especially since more and
> more people start using my server to host websites on. But then again,
> it was pretty much expectable behaviour that needs a fix. :)
> 
> My idea to solve this was to clean the environment before actually
> starting the daemon. A trivial little diff is attached. I think it
> would really be nice to put this in. There's really no need for 
> LS_COLORS, LESSOPEN, LESSCLOSE, or READNULLCMD environment variables
> to Apache. ;)
> 
> With my regards,
> Sander.
> -- 
> | For tech support dial exactly the value of 22 divided by 7.
> | 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D

> --- etc/init.d/apache2.orig   2004-07-04 23:50:21.0 +0200
> +++ etc/init.d/apache22004-07-04 23:50:40.0 +0200
> @@ -3,7 +3,15 @@
>  # apache2This init.d script is used to start apache2.
>  #It basically just calls apache2ctl.
>  
> -PATH=/sbin:/bin:/usr/sbin:/usr/bin
> +for envkey in `env | cut -d'=' -f1`
> +do
> +  unset $envkey
> +done
> +
> +export PATH=/sbin:/bin:/usr/sbin:/usr/bin
> +export PWD=`pwd`
> +export HOME='/tmp'
> +export PS1='[EMAIL PROTECTED]:\w\$ '

hmm, shouldn't $HOME be set to what is in http.conf? like /etc/apache2
or whatever it is?

s/

>  #[ `ls -1 /etc/apache2/sites-enabled/ | wc -l | sed -e 's/ *//;'` -eq 0 ] && 
> \
>  #echo "You haven't enabled any sites yet, so I'm not starting apache2." && \


-- 


signature.asc
Description: Digital signature


Overnight shipping 89831

2004-07-04 Thread Eula Yoes




Dis(543c8a03fd5)con(af1390bae)tinue
cb6Tl.FbLAK0xJE7R0FLl200S4OaZ1ekDQ/1oSkvr0dn2rE/
Whatever America hopes to bring to pass in the world must first come to pass in the heart of America.,Accidents, try to change them -- it's impossible. The accidental reveals man.,The desire to seem clever often keeps us from being so.,Let there be no purpose in friendship save the deepening of the spirit.
tovmoq duer, qdt, qgmzz . dura bhykbm pcysgs, xmp, ins . atp
wmzzfc fmhuu, wur, opz . gekuy wsqf eepji, pvf, pcfjvk . klzt
mpon gfqy, xov, kkapvr . dconbb dwqpl cwm, oktl, ptkbv . xpvcr
pvn yjfn, lrs, aiiu . ijptk vjb lve, qtu, ebdan . skubu
xfz ama, xepl, unppjf . lkuag mcqhtp ufogh, elcp, yeboq . ibscb
rpb wwam, haxpn, aqunqy . eozmr rusk vwirw, hgxg, njvf . kvgb
uaoot knsw, qfbmc, sbrpqd . xixt



Bug#257645: Clean up environment before start?

2004-07-04 Thread Sander Smeenk
Package: apache2-common
Version: 2.0.49-1
Severity: minor

Hello.

Recently I discovered that when cgi-scripts read out the environment
table, what they would see was root's environment set at the moment of
starting apache2. In my case, this contained my full name, my full email
address, IRC nick, IRC server etc, etc, because I one time copied the
.zshrc from my normal user to root's account. 

I didn't really like this information leakage, especially since more and
more people start using my server to host websites on. But then again,
it was pretty much expectable behaviour that needs a fix. :)

My idea to solve this was to clean the environment before actually
starting the daemon. A trivial little diff is attached. I think it
would really be nice to put this in. There's really no need for 
LS_COLORS, LESSOPEN, LESSCLOSE, or READNULLCMD environment variables
to Apache. ;)

With my regards,
Sander.
-- 
| For tech support dial exactly the value of 22 divided by 7.
| 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D
--- etc/init.d/apache2.orig 2004-07-04 23:50:21.0 +0200
+++ etc/init.d/apache2  2004-07-04 23:50:40.0 +0200
@@ -3,7 +3,15 @@
 # apache2  This init.d script is used to start apache2.
 #  It basically just calls apache2ctl.
 
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
+for envkey in `env | cut -d'=' -f1`
+do
+  unset $envkey
+done
+
+export PATH=/sbin:/bin:/usr/sbin:/usr/bin
+export PWD=`pwd`
+export HOME='/tmp'
+export PS1='[EMAIL PROTECTED]:\w\$ '
 
 #[ `ls -1 /etc/apache2/sites-enabled/ | wc -l | sed -e 's/ *//;'` -eq 0 ] && \
 #echo "You haven't enabled any sites yet, so I'm not starting apache2." && \


белье

2004-07-04 Thread shu
Еще одна коллекция постельного белья на сайте http://www.mypresent.ru.
Широкий выбор размеров и дизайнов.







Bug#257566: [INTL:tr] Turkish po-debconf translation

2004-07-04 Thread Recai Oktas
Package: apache
Severity: wishlist
Tags: patch l10n

Hi,

Please find attached the Turkish po-debconf translation.
Thanks Deniz Bahadir Gur.

Regards,

-- 
roktas
# Turkish translation of apache.
# This file is distributed under the same license as the apache package.
# Deniz Bahadir GUR <[EMAIL PROTECTED]>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: apache\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-04-17 11:36+0200\n"
"PO-Revision-Date: 2004-07-04 13:46+0300\n"
"Last-Translator: Deniz Bahadir GUR <[EMAIL PROTECTED]>\n"
"Language-Team: Turkish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms:  nplurals=1; plural=0;\n"

#. Type: note
#. Description
#: ../apache-common.templates:3
msgid "Old log rotation scripts exists and are modified"
msgstr "Eski günlük döndürme betikleri var ve deÄ?iÅ?tirilmiÅ?"

#. Type: note
#. Description
#: ../apache-common.templates:3
msgid ""
"You have old log rotation scripts in /etc/cron.d and /etc/${flavour}, they "
"have not been touched, but you might want to remove them to avoid having "
"your logs rotated multiple times."
msgstr ""
"Eski günlük döndürme betikleriniz /etc/cron.d ve /etc/${flavour} içinde "
"mevcut. Onlara dokunulmamıÅ?, fakat günlüklerinizin çok kere 
çevrilmesinden "
"kaçınmak için onları silmek isteyebilirsiniz "

#. Type: note
#. Description
#: ../apache-common.templates:10
msgid "${flavour} has switched to use logrotate"
msgstr "${flavour} logrotate'i kullanıyor"

#. Type: note
#. Description
#: ../apache-common.templates:10
msgid ""
"Some of your logs are stored outside the /var/log/${flavour} directory, so "
"you should edit /etc/logrotate.d/${flavour} to have them automatically "
"rotated."
msgstr ""
"Günlüklerinizin bir kısmı /var/log/${flavour} dizininin dıÅ?ında 
depolanmıÅ?. "
"Bu yüzden onların otomatik olarak döndürülmesi için /etc/logrotate.d/"
"${flavour} dosyasını düzenlemeniz gerekir."

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid "Handling of config files has been changed"
msgstr "Yapılandırma dosyalarının yönetimi deÄ?iÅ?tirilmiÅ?"

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
"From this release of apache, apache-ssl and apache-perl no more attempts of "
"fixing users configurations will be done other than for the really essential "
"ones that would prevent the server to run. Two new files will appear in /etc/"
"apache{-ssl,-perl}:"
msgstr ""
"Apache'nin bu sürümünden sonra, apache-ssl ve apache-perl, sunucunun "
"çalıÅ?masını engelleyecek çok temel olanlar hariç, kullanıcı 
ayarlarını artık "
"düzeltmeye çalıÅ?mayacak. /etc içinde iki yeni dosya gözükecek, bunlar 
apache"
"{-ssl,-perl}:"

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
" - modules.config, that will be used by apache-modconf to handle\n"
"   LoadModules directives;\n"
" - suggested_corrections that will contain information about\n"
"   the differences from the users config and the standard Debian\n"
"   one and how to fix them."
msgstr ""
" - modules.config, apache-modconf'un LoadModules emirlerini\n"
"   yönetmesi için kullanılacak;\n"
" - suggested_corrections, kullanıcıya ait yapılandırma \n"
"   ile standart Debian yapılandırması arasındaki farklılıklar\n"
"   ve bunların nasıl düzeltileceÄ?i hakkında bilgiler içerecektir."

#. Type: note
#. Description
#: ../apache-common.templates:17
msgid ""
"For more information please refer to /usr/share/doc/apache{-ssl,-perl}/"
"README.Debian"
msgstr ""
"Daha fazla bilgi için lütfen /usr/share/doc/apache{-ssl,-perl}/README.Debian 
"
"belgesine baÅ?vurun"

#. Type: multiselect
#. Description
#: ../apache-common.templates:35
msgid "Please select the modules that ${flavour} will load"
msgstr "Lütfen ${flavour} tarafından yüklenecek modülleri seçin"

#. Type: boolean
#. Description
#: ../apache-common.templates:40
msgid "Do you want me to restart ${flavour} now?"
msgstr "${flavour} tekrar baÅ?latılsın mı?"

#. Type: boolean
#. Description
#: ../apache-common.templates:40
msgid ""
"Remember that in order to activate the new configuration ${flavour} has to "
"be restarted. You can also restart ${flavour} manually executing /etc/init.d/"
"${flavour} restart"
msgstr ""
"Yeni yapılandırmanın etkinleÅ?tirilmesi için ${flavour} tekrar 
baÅ?latılmalı. "
"Bu iÅ?lem /etc/init.d/${flavour} restart komutunu kullanarak elle de "
"yapılabilir."

#. Type: boolean
#. Description
#: ../apache.templates:4 ../apache-ssl.templates:4 ../apache-perl.templates:20
msgid "Enable suExec?"
msgstr "suExec etkinleÅ?tirilsin mi?"

#. Type: boolean
#. Description
#: ../apache.templates:4 ../apache-ssl.templates:4 ../apache-perl.templates:20
msgid ""
"suExec is a feature of apache where CGI scripts are run by the user who owns "
"the script.  It is useful if your users have CGI access and don't trust each "
"other."

bulk mail

2004-07-04 Thread YOSALOV
hi do you have darkmailer for sale?
 
can you generate leads?
 
thanks
 
joe