<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<rss version="2.0">
<channel>
<title>COUGA.net FAQ - Die fünf neuesten Artikel:</title>
<description>COUGA.net FAQ steht Ihnen als Kunde jederzeit zur Verfügung.</description>
<link>http://faq.couga.net</link>	<item>
		<title><![CDATA[OS Commerce funktioniert nach MySQL Update nicht mehr]]></title>
		<description><![CDATA[<p>
Die aktuellste Version von osCommerce verfuegt bereits ueber MySQL 5 Unterstuetzung. Die meisten Versionen geben jedoch nach dem von uns ausgefuehrten Upgrade auf MySQL 5 unter anderem folgenden Fehler aus: 
</p>
<pre style="background-color: #ffff99">
 1054 - Unknown column &#39;p.products_id&#39; in &#39;on clause&#39;
</pre>
<p>
 Es gbt eine englisch-sprachige Anleitung (<a href="http://www.oscommerce.com/ext/update-20051112.txt" target="_blank">http://www.oscommerce.com/ext/update-20051112.txt</a> ) die dieses Problem addressiert, wir haben die wenigen Schritte hier fuer Sie zusammengestellt. Sollten Sie Probleme bei der Umsetzung haben oder sich dies nicht zutrauen wenden Sie sich bitte an unseren Support wir werden Ihnen dann gerne weiterhelfen.
</p>
<h1>Loesung </h1>
<p>
Die im Folgenden angegebenen Zeilennummer koennen leicht abweichen, wenn Sie verschiedene Add-Ons instalilert haben. Bei unseren Tests mit verschiedenen Shops stimmten diese jedoch exakt ueberein. Sie koennen sich die Dateien, die im Folgenden benannt sind, mit Ihrem FTP Programm herunterladen, diese aendern und anschliessend wieder auf den Server laden. Alternativ koennen Sie auch den internen Editor benutzen, wenn der Login in den Admin Bereich korrekt funktioniert. 
</p>
<h4>Die Zeilen 213-223 in advanced_search_result.php muessen von</h4>
<pre>
 
</pre>
<pre>
<span style="background-color: #ffff99">$from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c";</span>
<span style="background-color: #ffff99">if ( (DISPLAY_PRICE_WITH_TAX == &#39;true&#39;) &amp;&amp; (tep_not_null($pfrom) || tep_not_null($pto)) ) {</span>
<span style="background-color: #ffff99">  if (!tep_session_is_registered(&#39;customer_country_id&#39;)) {</span>
<span style="background-color: #ffff99">    $customer_country_id = STORE_COUNTRY;</span>
<span style="background-color: #ffff99">    $customer_zone_id = STORE_ZONE;</span>
<span style="background-color: #ffff99">  }</span>
<span style="background-color: #ffff99">  $from_str .= " left join " . TABLE_TAX_RATES . " tr on p.products_tax_class_id = tr.tax_class_id left join " . TABLE_ZONES_TO_GEO_ZONES . " gz on tr.tax_zone_id = gz.geo_zone_id and (gz.zone_country_id is null or gz.zone_country_id = &#39;0&#39; or gz.zone_country_id = &#39;" . (int)$customer_country_id . "&#39;) and (gz.zone_id is null or gz.zone_id = &#39;0&#39; or gz.zone_id = &#39;" . (int)$customer_zone_id . "&#39;)";</span>
<span style="background-color: #ffff99">}</span>
<span style="background-color: #ffff99">$where_str = " where p.products_status = &#39;1&#39; and p.products_id = pd.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id ";</span>
</pre>
<p>
geaendert werden in:
</p>
<pre>
<span style="background-color: #ccffcc">$from_str = "from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m using(manufacturers_id) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id";</span>
<span style="background-color: #ccffcc">if ( (DISPLAY_PRICE_WITH_TAX == &#39;true&#39;) &amp;&amp; (tep_not_null($pfrom) || tep_not_null($pto)) ) {</span>
<span style="background-color: #ccffcc">  if (!tep_session_is_registered(&#39;customer_country_id&#39;)) {</span>
<span style="background-color: #ccffcc">    $customer_country_id = STORE_COUNTRY;</span>
<span style="background-color: #ccffcc">    $customer_zone_id = STORE_ZONE;</span>
<span style="background-color: #ccffcc">  }</span>
<span style="background-color: #ccffcc">  $from_str .= " left join " . TABLE_TAX_RATES . " tr on p.products_tax_class_id = tr.tax_class_id left join " . TABLE_ZONES_TO_GEO_ZONES . " gz on tr.tax_zone_id = gz.geo_zone_id and (gz.zone_country_id is null or gz.zone_country_id = &#39;0&#39; or gz.zone_country_id = &#39;" . (int)$customer_country_id . "&#39;) and (gz.zone_id is null or gz.zone_id = &#39;0&#39; or gz.zone_id = &#39;" . (int)$customer_zone_id . "&#39;)";</span>
<span style="background-color: #ccffcc">}</span>
<span style="background-color: #ccffcc">$from_str .= ", " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c";</span>
<span style="background-color: #ccffcc">$where_str = " where p.products_status = &#39;1&#39; and p.products_id = pd.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id ";</span>
</pre>
<h4>Die folgenden Zeilen muessen in der index.php geaendert werden:</h4>
<pre>
</pre>
<p>
Zeile 175, von:
</p>
<pre>
<span style="background-color: #ffff99">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = &#39;1&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;manufacturers_id&#39;] . "&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$HTTP_GET_VARS[&#39;filter_id&#39;] . "&#39;";</span>
</pre>
<p>
in:
</p>
<pre>
<span style="background-color: #ccffcc">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = &#39;1&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;manufacturers_id&#39;] . "&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$HTTP_GET_VARS[&#39;filter_id&#39;] . "&#39;";</span>
</pre>
<p>
Zeile 178, von:
</p>
<pre>
<span style="background-color: #ffff99">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = &#39;1&#39; and pd.products_id = p.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;manufacturers_id&#39;] . "&#39;";</span>
</pre>
<p>
in:
</p>
<pre>
<span style="background-color: #ccffcc">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m where p.products_status = &#39;1&#39; and pd.products_id = p.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;manufacturers_id&#39;] . "&#39;";</span>
</pre>
<p>
Zeile 184, von:
</p>
<pre>
<span style="background-color: #ffff99">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = &#39;1&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;filter_id&#39;] . "&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$current_category_id . "&#39;";</span>
</pre>
<p>
in:
</p>
<pre>
<span style="background-color: #ccffcc">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = &#39;1&#39; and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = &#39;" . (int)$HTTP_GET_VARS[&#39;filter_id&#39;] . "&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$current_category_id . "&#39;";</span>
</pre>
<p>
Zeile187, von:
</p>
<pre>
<span style="background-color: #ffff99">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = &#39;1&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$current_category_id . "&#39;";</span>
</pre>
<p>
in:
</p>
<pre>
<span style="background-color: #ccffcc">$listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = &#39;1&#39; and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = &#39;" . (int)$languages_id . "&#39; and p2c.categories_id = &#39;" . (int)$current_category_id . "&#39;";</span>
</pre>
<p>
Die Zeile  292 in admin/categories.php muss geaendert werden von:
</p>
<pre>
<span style="background-color: #ffff99">tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, products_model,products_image, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values (&#39;" . tep_db_input($product[&#39;products_quantity&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_model&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_image&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_price&#39;]) . "&#39;,  now(), &#39;" . tep_db_input($product[&#39;products_date_available&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_weight&#39;]) . "&#39;, &#39;0&#39;, &#39;" . (int)$product[&#39;products_tax_class_id&#39;] . "&#39;, &#39;" . (int)$product[&#39;manufacturers_id&#39;] . "&#39;)");</span>
</pre>
<p>
in:
</p>
<pre>
<span style="background-color: #ccffcc">tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, products_model,products_image, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values (&#39;" . tep_db_input($product[&#39;products_quantity&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_model&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_image&#39;]) . "&#39;, &#39;" . tep_db_input($product[&#39;products_price&#39;]) . "&#39;,  now(), " . (empty($product[&#39;products_date_available&#39;]) ? "null" : "&#39;" . tep_db_input($product[&#39;products_date_available&#39;]) . "&#39;") . ", &#39;" . tep_db_input($product[&#39;products_weight&#39;]) . "&#39;, &#39;0&#39;, &#39;" . (int)$product[&#39;products_tax_class_id&#39;] . "&#39;, &#39;" . (int)$product[&#39;manufacturers_id&#39;] . "&#39;)");</span>
</pre>
<h4>Datenbank Anpassung: </h4>
<p>
Abschliessend loggen Sie sich bitte noch in unser PHPMyAdmin Tool ein, welches Sie am einfachsten ueber das WebCon erreichen. Nach dem Login klicken waehlen Sie bitte gegebenefalls die korrekte Datenbank aus und klickn Sie anschliessen oben auf "SQL". Kopieren Sie die folgenden Befehle in das dort vorhandene Fenster und lassen Sie sie ausfuehren.
</p>
<pre>
<span style="background-color: #ccffcc">ALTER TABLE whos_online MODIFY COLUMN last_page_url VARCHAR(255) NOT NULL;</span>
<span style="background-color: #ccffcc">ALTER TABLE customers MODIFY COLUMN customers_default_address_id INTEGER;</span>
<span style="background-color: #ccffcc">ALTER TABLE customers_basket MODIFY COLUMN final_price DECIMAL(15,4);</span>
</pre>
<p>
 
</p>
<p>
 
</p>
]]></description>
		<link>http://faq.couga.net/index.php?action=artikel&amp;cat=12&amp;id=75&amp;artlang=de</link>
		<pubDate>Sun, 16 Mar 2008 01:34:00 GMT</pubDate>
	</item>
	<item>
		<title><![CDATA[Einverständniserklärung bei Minderjährigen]]></title>
		<description><![CDATA[<p>
COUGA.net erlaubt auch minderjährigen Interessenten die Bestellung von Produkten über COUGA.net. Für die Erfüllung der Bestellung benötigen wir jedoch eine Einverständniserklärung von Ihren Erziehungsberechtigten. 
</p>
<p>
Füllen Sie hierzu nach Ihrer Bestellung das hier verfügbare PDF dokument aus und senden Sie dieses per Fax oder Post an COUGA.net zurück.
</p>
<p>
Die Postanschrift lautet:
</p>
<p>
<strong>COUGA.net<br />
Hafenstr. 54<br />
34125 Kassel</strong>
</p>
<p>
Unsere Faxnummer lautet: 
</p>
<p>
<strong>+49 (561) 9985664 - 9 </strong>
</p>
]]></description>
		<link>http://faq.couga.net/index.php?action=artikel&amp;cat=4&amp;id=74&amp;artlang=de</link>
		<pubDate>Wed, 05 Mar 2008 20:59:00 GMT</pubDate>
	</item>
	<item>
		<title><![CDATA[Wie erstelle ich Eigene Fehlerseiten?]]></title>
		<description><![CDATA[<p>
COUGA.net erlaubt ab Tarif WEB 5.3 die Einbindung von eigenen Fehlerseiten.
</p>
<p>
Zur Einbindung müssen Sie lediglich eine Datei Namens <strong>.htaccess</strong> (mit führendem Punkt) in<br />
Ihrem Webspeicherplatz anlegen. Diese sollte folgenden Inhalt haben:<br />
<br />
ErrorDocument 500 /fehlerdokument_fuer_500.html<br />
ErrorDocument 404 /fehlerdokument_fuer_404.html<br />
ErrorDocument 401 /fehlerdokument_fuer_401.html<br />
ErrorDocument 403 /fehlerdokument_fuer_403.html<br />
<br />
Die Nummer nach dem Schluesselwort ErrorDocument ist die Fehlernummer. Sie finden eine ausführliche, wenn auch eher technische, Liste der Fehler in der Wikipedia unter <a href="http://de.wikipedia.org/wiki/HTTP-Statuscode" target="_blank" title="http://de.wikipedia.org/wiki/HTTP-Statuscode">http://de.wikipedia.org/wiki/HTTP-Statuscode</a>. 
</p>
<p>
Die wichtigsten Fehlercodes sind 404 (Nicht gefunden), 500 (Interner Serverfehler), 403 (Verbotener Zugriff) und 401 (Zugang verweigert).
</p>
<p>
nschliessend geben Sie den Pfad zu einer Fehlerdatei relativ zu Ihrem Speicherplatz an. Alternativ können Sie auch eine vollständige<br />
Internetadresse (URL) zu den Fehlerdokumenten angeben und so auch .php Dateien als Fehlerseiten nutzen.
</p>
]]></description>
		<link>http://faq.couga.net/index.php?action=artikel&amp;cat=10&amp;id=73&amp;artlang=de</link>
		<pubDate>Mon, 03 Mar 2008 20:58:00 GMT</pubDate>
	</item>
	<item>
		<title><![CDATA[Wie richte ich mein E-Mail Postfach in Apple Mail ein?]]></title>
		<description><![CDATA[<p>Bei dieser Anleitung gehen wir davon aus, dass Sie ein E-Mail - Postfach für die Adresse vorname.nachname@IhreDomain.de einrichten möchten. Sie müssen die folgenden Einstellungen auf Ihre spezielle Adresse übertragen.<br /><br />Nachdem Sie im WebCon Ihre E-Mailadresse angelegt haben, starten Sie Apple Mail. Wählen Sie im Menü von Mail den Punkt <strong>"Einstellungen"</strong> aus und klicken Anschließend auf <strong>"Accounts"</strong>.</p><p><img src="http://www.couga.net/faq/image/AppleMail01.jpg" alt=" " /> </p><p><br />Klicken Sie nun auf das "<span style="font-weight: bold" class="Apple-style-span">+</span>" am unteren Bildrand um einen Account zu erstellen.</p><p>Tragen Sie bei <strong>"Vollständiger Name"</strong> den Namen ein, welcher als Absender bei Ihren E-Mails erscheinen soll und unter <strong>" E-Mail Adresse"</strong> die Adresse, die Sie einrichten möchten. Unter <span style="font-weight: bold" class="Apple-style-span">"Kennwort"</span> geben Sie bitte das zuvor im WebCon für dieses Postfach definierte Passwort ein und klicken Sie anschließend auf <span style="font-weight: bold" class="Apple-style-span">"fortfahren"</span>. </p><p><img src="http://www.couga.net/faq/image/AppleMail02.jpg" alt=" " /> </p><p> </p><p>Auf dieser Seite haben Sie die Wahl, ob Sie Ihre E-Mails künftig per POP oder IMAP abrufen möchten. COUGA.net unterstützt beide Abrufvarianten parallel zueinander. Sollten Sie unsicher sein, wählen Sie bitte POP.</p><p>Geben Sie zunächst eine <span style="font-weight: bold" class="Apple-style-span">"Beschreibung"</span> zu Ihrem Postfach ein. Als "<strong>Server für eingehende E-Mails"</strong> verwenden Sie bitte "pop3.IhreDomain.de". Geben Sie als <span style="font-weight: bold" class="Apple-style-span">"Benutzername"</span> die einzurichtende E-Mail-Adresse und als <span style="font-weight: bold" class="Apple-style-span">"Kennwort"</span> das zuvor definierte Passwort für dieses Postfach ein und klicken Sie anschließend auf <span style="font-weight: bold" class="Apple-style-span">"Fortfahren"</span>.</p><p><img src="http://www.couga.net/faq/image/AppleMail03.jpg" alt=" " width="600" height="566" /></p><p> </p><p>Auf dieser Seite werden die Daten für den Post-Ausgangsserver abgefragt.</p><p>Geben Sie zunächst eine <span style="font-weight: bold" class="Apple-style-span">"Beschreibung"</span> für den Post-Ausgangsserver ein. Als "<strong>Server für ausgehende E-Mails"</strong> verwenden Sie bitte "smtp.IhreDomain.de".</p><p><span style="font-weight: bold" class="Apple-style-span">WICHTIG</span>: Aktivieren Sie die Option<span style="font-weight: bold" class="Apple-style-span"> "Identifizierung verwenden"</span> und geben Sie als <span style="font-weight: bold" class="Apple-style-span">"Benutzername" </span>noch einmal die einzurichtende E-Mail-Adresse ein. Als<span style="font-weight: bold" class="Apple-style-span"> "Kennwort"</span> verwenden Sie wieder das zuvor definierte Passwort für dieses Postfach. Klicken Sie anschließend auf <span style="font-weight: bold" class="Apple-style-span">"Fortfahren"<span style="font-weight: normal" class="Apple-style-span">.</span></span></p><p> </p><p><span style="font-weight: bold" class="Apple-style-span"><span style="font-weight: normal" class="Apple-style-span"><img src="http://www.couga.net/faq/image/AppleMail04.jpg" alt=" " width="600" height="566" /> </span></span></p><p> </p><p>Sie sehen nun noch einmal eine Übersicht über die vorgenommene Konfiguration. Aktivieren Sie nun noch die Option <span style="font-weight: bold" class="Apple-style-span">"Account mit dem Internet verbinden"</span> und klicken Sie auf <span style="font-weight: bold" class="Apple-style-span">"Erstellen"</span>. </p><p><img src="http://www.couga.net/faq/image/AppleMail05.jpg" alt=" " width="600" height="566" /> </p><p> </p><p>Ihr E-Mail Postfach ist nun vollständig eingerichtet und Sie können E-Mails Versenden und Abrufen. </p>]]></description>
		<link>http://faq.couga.net/index.php?action=artikel&amp;cat=19&amp;id=72&amp;artlang=de</link>
		<pubDate>Fri, 29 Feb 2008 13:48:00 GMT</pubDate>
	</item>
	<item>
		<title><![CDATA[Bei allen E-Mails die ich sende erhalte ich die Fehlermeldung,  dass die E-Mail nicht gesendet werden konnte. Was kann ich dagegen tun?]]></title>
		<description><![CDATA[<p>
Vermutlich haben Sie die "Anmeldung am Postausgangsserver" bzw. "SMTP-Authentifizierung" nicht aktiviert. Diese Einstellung nehmen Sie in Ihrem E-Mail Programm vor und Sie dient als Schutz vor dem Missbrauch unserer E-Mail Server.
</p>
<p>
Sie finden die genauen Einstellungen fuer eine Vielzahl an E-Mail Programmen in de FAQs  unterhalb des Menuepunktes "E-Mail". 
</p>
<p>
Sollten Sie weiterhin Probleme erfahren wenden Sie sich bitte mit der genauen Fehlermeldung an unseren Support.  
</p>
]]></description>
		<link>http://faq.couga.net/index.php?action=artikel&amp;cat=2&amp;id=68&amp;artlang=de</link>
		<pubDate>Thu, 28 Feb 2008 19:37:00 GMT</pubDate>
	</item>
</channel>
</rss>