Lupuz.de: Artikel-Portal / Magazin

Zurück   Postpla.net - die Forum Community > PC, Internet und Technik > Betriebssysteme und Software

NOCC - Webmail Client

Anzeigen:

Thema geschlossen
 
Themen-Optionen Thema durchsuchen
Skyhoof
Alt 13.03.2003, 00:33   #1
Standard NOCC - Webmail Client

Hat zufällig einer von Euch Erfahrungen mit NOCC ?
( http://nocc.sourceforge.net/ )

Ich blick da voll nicht durch die Einrichtung durch.
 
 
Nach oben
Skyhoof
Alt 16.03.2003, 03:01   #2
Standard

hallo !?

*nochmal auf den Thread aufmerksam mach*

Weiß mir da wirklich keiner zu helfen ??
 
 
Nach oben
daRaider
Alt 16.03.2003, 03:17   #3
Standard

ja ich hatte den auf meinem webspace laufen. was haste denn fürn problem damit?
 
 
Nach oben
Skyhoof
Alt 16.03.2003, 03:21   #4
Standard

ich blick nicht durch die konfig durch, irgendwas muss ich da falsch gemacht haben.

bekomme diese Fehlermeldung:

The IMAP module does not seem to be installed on this PHP setup, please see NOCC's documentation.
 
 
Nach oben
daRaider
Alt 16.03.2003, 03:25   #5
Standard

lässt du das local laufen oder auf Webspace? Schaut fast so aus als wäre kein IMAP Modul installiert
Klappts denn mit POP3?
 
 
Nach oben
Skyhoof
Alt 16.03.2003, 03:32   #6
Standard

Läuft auf Webspace.

keine ahnung wie ich das einstell dass der pop3 nutzt.
Eigentlich sollte er das, aber da hab ich in der Config was falsch verstanden.
Morgen poste ich mal meine Config, bin jetzt zu müde
 
 
Nach oben
Skyhoof
Alt 16.03.2003, 11:31   #7
Standard

So, hier wie versprochen die Config.php:
Code:
<?php
/*
 * $Header: /cvsroot/nocc/nocc/webmail/conf.php.dist,v 1.81.2.2 2001/11/25 09:43:18 wolruf Exp $
 *
 * Copyright 2001 Nicolas Chalanset <nicocha@free.fr>
 * Copyright 2001 Olivier Cahagne <cahagn_o@epita.fr>
 *
 * See the enclosed file COPYING for license information (GPL).  If you
 * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
 */

// ################### This is the main configuration for NOCC ########## //

// ==> Required parameters

// Default smtp server and smtp_port (default is 25)
// If a domain has no smtp server, this one will be used
// If no smtp server is provided, Nocc will default to the mail() function,
// and try to use Sendmail or any other MTA (Postfix)
$default_smtp_server = '';
$default_smtp_port = 25;

// List of domains people can log in
// You can have as many domains as you need

// $domains[0]->domain = 'sourceforge.net';
//  domain name e.g 'sourceforge.net'. This field is used when sending message
//
// $domains[0]->in = 'mail.sourceforge.net:110/pop3';
//  imap or pop3 server name + port + protocol (only if not imap)
//  [server_name]:[port number]/[protocol]
//  ex for an imap server : mail.sourceforge.net:143
//  ex for an ssl imap server : mail.sourceforge.net:993/ssl
//  ex for an ssl imap server with a self-signed certificate : mail.sourceforge.net:993/ssl/novalidate-cert
//  ex for a pop3 server  : mail.sourceforge.net:110/pop3
//  ex for an ssl pop3 server : mail.sourceforge.net:995/pop3/ssl
//  ex for an ssl pop3 server with a self-signed certificate : mail.sourceforge.net:995/pop3/ssl/novalidate-cert
//  protocol can only be pop3
//
// $domains[0]->smtp = 'smtp.isp.com';
//  Optional: smtp server name or IP address
//  Leave empty to send mail via sendmail
//
// $domains[0]->smtp_port = 25;
//  Port number to connect to smtp server (usually 25)

$domains[0]->domain = 'sky-isp.de';
$domains[0]->in = 'pop3.sky-isp.de:110/pop3';
$domains[0]->smtp = 'smtp.sky-isp.de';
$domains[0]->smtp_port = 25;

// If you want to add more domainis, uncomment the following
// lines and fill them in

$domains[1]->domain = 'skyisp.de';
$domains[1]->in = 'pop3.skyisp.de:110/pop3';
$domains[1]->smtp = 'smtp.skyisp.de';
$domains[1]->smtp_port = 25;

//$domains[2]->domain = '';
//$domains[2]->in = '';
//$domains[2]->smtp = '';
//$domains[2]->smtp_port = 25;

// Default tmp directory (where to store temporary uploaded files)
// This should be something like '/tmp' on Unix System
// And 'c:\\temp' on Win32 (note that we must escape "\")
$tmpdir = '/tmp';

// Preferences data directory
// IMPORTANT: This directory must exist and be writable by the user
// the webserver is running as (e.g. 'apache', or 'nobody'). For
// Apache, see the User directive in the httpd.conf file.
// See README for more about this.
// This should be something like 'profiles/' on Unix System
// or 'prefs\\' on Win32 (note that we must escape "\")
// If left empty, preferences will be disabled.
$prefs_dir = '';

// Default folder to go first
$default_folder = 'INBOX';

// ===> End of required parameters
// The following parameters can be changed but it's not necessary to
// get a working version of nocc

// if browser has no preferred language, we use the default language
// This is only needed for browsers that don't send any preferred
// language such as W3 Amaya
$default_lang = 'de';

// How many messages to display in the inbox (devel only)
$max_msg_num = 1;

// let user see the header of a message
$use_verbose = true;

// the user can logout or not (if nocc is used within your website
// enter 'false' here else leave 'true')
$enable_logout = true;

// Whether or not to display attachment part number
$display_part_no = true;

// Whether or not to display the Message/RFC822 into the attachments
// (the attachments of that part are still available even if false is set
$display_rfc822 = true;

// If you don't want to display images (GIF, JPEG and PNG) sent as attachements
// set it to 'false'
$display_img_attach = true;

// If you don't want to display text/plain attachments set it to 'false'
$display_text_attach = true;

// By default the messages are sorted by date 
$default_sort = '1';

// By default the most recent is in top ('1' --> sorting top to bottom,
// '0' --> bottom to top)
$default_sortdir = '1';

// For old UCB POP server, change this setting to 1 to enable
// new mail detection. Recommended: leave it to 0 for any other POP or
// IMAP server.
// See FAQ for more details.
$have_ucb_pop_server = false;

// If you wanna make your own theme and force people to use that one, 
// set $use_theme to false and fill in the $default_theme to the theme name
// you want to use
// Theme handling: allows users to choose a theme on the login page
$use_theme = true;

// Default theme
$default_theme = 'newlook';

// Error reporting
// Display error but no notice
$debug_level = E_ALL & ~E_NOTICE;

// Display delete button as icon (true) or as an HTML button (false)
$delete_button_icon = true;

// Base URL where NOCC is hosted (only needed for Xitami servers, see #463390)
$base_uri = '';

// ################### Messages Signature  ################### //

// This message is added to every message, the user cannot delete it
// Be careful if you modify this, do not forget to write '\r\n' to switch
// to the next line !
$ad = "___________________________________\r\nNOCC, http://nocc.sourceforge.net";


/*
###################     End of Configuration     ####################
*********************************************************************
################### Do not modify below this line ###################
*/

$nocc_version = '0.9.5';
$nocc_name = 'NOCC';

session_register('domainnum', 'user', 'passwd', 'server', 'servtype', 'port', 'theme');

if (isset($domainnum))
{
    $domain	= $domains[$domainnum]->domain;
    $servr = $domains[$domainnum]->in;
    $smtp_server = $domains[$domainnum]->smtp;
	$smtp_port = $domains[$domainnum]->smtp_port;
}

if (empty($smtp_server))
	$smtp_server = $default_smtp_server;
if (empty($smtp_port))
	$smtp_port = $default_smtp_port;
if (empty($servr) && !empty($server) && !empty($servtype) && !empty($port))
{
		$servtype = strtolower($servtype);
		if ($servtype != 'imap')
			$servr = $server.'/'.$servtype.':'.$port;
		else
			$servr = $server.':'.$port;
		$domain = $server;
}

if (!isset($folder))
	$folder = $default_folder;
if (!isset($sort))
	$sort = $default_sort;
if (!isset($sortdir))
	$sortdir = $default_sortdir;
if ($use_theme == true)
{
	if (!isset($theme))
		$theme = $default_theme;
}
else
	$theme = $default_theme;
$php_session = ini_get('session.name');
$action = isset($action) ? $action : ''; 
error_reporting($debug_level);

// Prevent mangling of uploaded attachments
set_magic_quotes_runtime(0);

require_once ('./conf_lang.php');
require ('./themes/'.$theme.'/colors.php');
?>

An dieser Stelle war ich mir besonders Unsicher:
Code:
$domains[0]->domain = 'sky-isp.de';
$domains[0]->in = 'pop3.sky-isp.de:110/pop3';
$domains[0]->smtp = 'smtp.sky-isp.de';
$domains[0]->smtp_port = 25;
Die URL des NOCC ist
http://www.sky-isp.de/webmail
 
 
Nach oben
daRaider
Alt 16.03.2003, 12:17   #8
Standard

Also ich seh da leider auch nichts was auf nen Fehler hindeuten würde.
Das einzige was mir auffigel war:
Code:
// For old UCB POP server, change this setting to 1 to enable
// new mail detection. Recommended: leave it to 0 for any other POP or
// IMAP server.
// See FAQ for more details.
$have_ucb_pop_server = false;
Hier verlangt er doch 0/1 und nicht true/false, oder? Ich will nicht behaupten, dass es daran liegt. Aber mehr fällt mir wirklich nicht auf.
Die POP3 Daten funktionieren ja in Outlook, oder? Außerdem würde ich mal den alternativen Server rauskommentieren und es erstmal nur mit einem versuchen.
Ich installier das Teil heute abend mal local. Dann kann ich dir vielleicht weiterhelfen...
 
 
Nach oben
daRaider
Alt 16.03.2003, 13:08   #9
Standard

So ich habs jetzt mal unter: http://mail.mgauger.de eingerichtet.

Klappt problemlos und meine conf sieht so aus:

Code:
<?php
/*
 * $Header: /cvsroot/nocc/nocc/webmail/conf.php.dist,v 1.81.2.2 2001/11/25 09:43:18 wolruf Exp $
 *
 * Copyright 2001 Nicolas Chalanset <nicocha@free.fr>
 * Copyright 2001 Olivier Cahagne <cahagn_o@epita.fr>
 *
 * See the enclosed file COPYING for license information (GPL).  If you
 * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
 */

// ################### This is the main configuration for NOCC ########## //

// ==> Required parameters

// Default smtp server and smtp_port (default is 25)
// If a domain has no smtp server, this one will be used
// If no smtp server is provided, Nocc will default to the mail() function,
// and try to use Sendmail or any other MTA (Postfix)
$default_smtp_server = 'smtp.mgauger.de';
$default_smtp_port = 25;

// List of domains people can log in
// You can have as many domains as you need

// $domains[0]->domain = 'sourceforge.net';
//  domain name e.g 'sourceforge.net'. This field is used when sending message
//
// $domains[0]->in = 'mail.sourceforge.net:110/pop3';
//  imap or pop3 server name + port + protocol (only if not imap)
//  [server_name]:[port number]/[protocol]
//  ex for an imap server : mail.sourceforge.net:143
//  ex for an ssl imap server : mail.sourceforge.net:993/ssl
//  ex for an ssl imap server with a self-signed certificate : mail.sourceforge.net:993/ssl/novalidate-cert
//  ex for a pop3 server  : mail.sourceforge.net:110/pop3
//  ex for an ssl pop3 server : mail.sourceforge.net:995/pop3/ssl
//  ex for an ssl pop3 server with a self-signed certificate : mail.sourceforge.net:995/pop3/ssl/novalidate-cert
//  protocol can only be pop3
//
// $domains[0]->smtp = 'smtp.isp.com';
//  Optional: smtp server name or IP address
//  Leave empty to send mail via sendmail
//
// $domains[0]->smtp_port = 25;
//  Port number to connect to smtp server (usually 25)

$domains[0]->domain = 'mgauger.de';
$domains[0]->in = 'pop.mgauger.de:110/pop3';
$domains[0]->smtp = 'smtp.mgauger.de';
$domains[0]->smtp_port = 25;

// If you want to add more domainis, uncomment the following
// lines and fill them in

//$domains[1]->domain = '';
//$domains[1]->in = '';
//$domains[1]->smtp = '';
//$domains[1]->smtp_port = 25;

//$domains[2]->domain = '';
//$domains[2]->in = '';
//$domains[2]->smtp = '';
//$domains[2]->smtp_port = 25;

// Default tmp directory (where to store temporary uploaded files)
// This should be something like '/tmp' on Unix System
// And 'c:\\temp' on Win32 (note that we must escape "\")
$tmpdir = '/tmp';

// Preferences data directory
// IMPORTANT: This directory must exist and be writable by the user
// the webserver is running as (e.g. 'apache', or 'nobody'). For
// Apache, see the User directive in the httpd.conf file.
// See README for more about this.
// This should be something like 'profiles/' on Unix System
// or 'prefs\\' on Win32 (note that we must escape "\")
// If left empty, preferences will be disabled.
$prefs_dir = '/profiles';

// Default folder to go first
$default_folder = 'INBOX';

// ===> End of required parameters
// The following parameters can be changed but it's not necessary to
// get a working version of nocc

// if browser has no preferred language, we use the default language
// This is only needed for browsers that don't send any preferred
// language such as W3 Amaya
$default_lang = 'de';

// How many messages to display in the inbox (devel only)
$max_msg_num = 1;

// let user see the header of a message
$use_verbose = true;

// the user can logout or not (if nocc is used within your website
// enter 'false' here else leave 'true')
$enable_logout = true;

// Whether or not to display attachment part number
$display_part_no = true;

// Whether or not to display the Message/RFC822 into the attachments
// (the attachments of that part are still available even if false is set
$display_rfc822 = true;

// If you don't want to display images (GIF, JPEG and PNG) sent as attachements
// set it to 'false'
$display_img_attach = true;

// If you don't want to display text/plain attachments set it to 'false'
$display_text_attach = true;

// By default the messages are sorted by date 
$default_sort = '1';

// By default the most recent is in top ('1' --> sorting top to bottom,
// '0' --> bottom to top)
$default_sortdir = '1';

// For old UCB POP server, change this setting to 1 to enable
// new mail detection. Recommended: leave it to 0 for any other POP or
// IMAP server.
// See FAQ for more details.
$have_ucb_pop_server = false;

// If you wanna make your own theme and force people to use that one, 
// set $use_theme to false and fill in the $default_theme to the theme name
// you want to use
// Theme handling: allows users to choose a theme on the login page
$use_theme = true;

// Default theme
$default_theme = 'standard';

// Error reporting
// Display error but no notice
$debug_level = E_ALL & ~E_NOTICE;

// Display delete button as icon (true) or as an HTML button (false)
$delete_button_icon = true;

// Base URL where NOCC is hosted (only needed for Xitami servers, see #463390)
$base_uri = '';

// ################### Messages Signature  ################### //

// This message is added to every message, the user cannot delete it
// Be careful if you modify this, do not forget to write '\r\n' to switch
// to the next line !
$ad = "___________________________________\r\nNOCC, http://nocc.sourceforge.net";


/*
###################     End of Configuration     ####################
Also geh ich mal davon aus, dass es an deinem Webspace liegt. Da scheint PHP ohne IMAP compiliert zu sein oder soetwas...


Edit: Ich kann ja auch mal deine Daten eingeben falls die oben angegeben stimmen bzw. deine conf benutzen. Dann kannst du es mal versuchen.
Wenns dann funktioniert wirds wohl am Webspace liegen.
 
 
Nach oben
Skyhoof
Alt 16.04.2003, 15:52   #10
Standard

Danke für Dein angebot Dude!

Auch wenn inzwischen ein paar wochen vergangen sind komme ich nun gerne darauf zurück, sofern Du dazu nun zeit hast:

Bitte versuche mal dein Nocc so einzurichten dass Du diesen Account abrufen kannst:

smtp-server = sky-isp.de (keine Subdomain nötig)
pop3-server = sky-isp.de

Username = web192p4
Passwort = (sende ich Dir auf anfrage via PM zu)


Danke

Sky
 
 
Nach oben
Ähnliche Themen, die dich vielleicht interessieren
Thema Autor Forum Antworten Letzter Beitrag
LanDesk Client unter Debian? Ænema Betriebssysteme und Software 2 03.03.2006 19:05
ICS Firewall => am Client Emule verweigern Calli Betriebssysteme und Software 7 24.12.2005 23:43
ICQ Client für Linux noname[FF] Betriebssysteme und Software 13 15.01.2004 23:56
Guter Filesharing Client??? ( nicht eMule/eDonkey) Teletubiesfan Netzwerke und Internettechnik 29 03.10.2003 18:52
alternativer icq client gEnTi Netzwerke und Internettechnik 39 27.02.2003 16:37
Anzeigen:
Thema geschlossen

Lesezeichen

Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche



Alle Zeitangaben in WEZ +2. Es ist jetzt 22:14 Uhr.


Lupuz.de - wir können auch anders!
©1998 - 2008, Lupuz:Information-Network
Powered by vBulletin Version 3.7.1 (Deutsch), Jelsoft Enterprises Ltd.
Grüne Links?

SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.