Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 19

Discussione: [UEBIMIAU] Configurare

  1. #1

    [UEBIMIAU] Configurare

    Qualcuno mi aiuta a configurarlo? E' scritto in php del quale non ci capisco nulla e si tratta di modificare pochissime righe nel config.php.
    Grazie in anticipo all'anima buona che mi terrà in considerazione

  2. #2
    posta le linee che nn capisci

  3. #3
    Comincio con il file install.txt
    Premetto che ho creato una cartella chiamata webmail (su aruba) ed ho messo tutto lì dentro. Ora ti mando anche il config.php.

    ----------------------------------------------------
    INSTALL
    ----------------------------------------------------
    - Unpack the package (.tar.gz or .zip file) into a directory within your web server,
    eg /home/httpd/webmail (*unix) or c:\inetpub\wwwroot\webmail (Win32).

    - Make a non web-shared folder (users cannot see this folder throught a web browser),
    eg. /tmp/uebimiau or c:\winnt\temp\uebimiau

    - The user wich the webserver is running (nobody, apache, IUSR_machine,etc) need rights
    to write on this folder, turn it writtable

    Open the "inc/config.php" file in a text editor, all instructions are commented on this file,
    pay attention on the $temporary_folder variable, set it according your folder name

  4. #4
    Facciamo finta che il mio sito sia www.miosito.net e la cartella di uebimiau sia www.miosito.net/webmail
    Questo è il config.php:

    <?
    /************************************************** **********************
    UebiMiau is a GPL'ed software developed by

    - Aldoir Ventura - aldoir@users.sourceforge.net
    - http://uebimiau.sourceforge.net

    Fell free to contact, send donations or anything to me :-)
    São Paulo - Brasil
    ************************************************** ***********************/

    ################################################## ######################
    #Defaults:
    #1 - Yes/On/True
    #0 - No/Off/False
    # do not remove or change this

    define("yes",1);
    define("no",0);

    $themes = Array();
    $languages = Array();

    ################################################## ######################
    # _ Please attention _:
    # The temporary files will be stored on this folder
    # For security reasons, do not use web-shared folders

    # ** The Web Server needs write-permission on this folder

    # * Unix/Linux users use.
    # /tmp/uebimiau
    # * Win32 users
    # c:/winnt/temp/uebimiau

    # NEVER use backslashes (\). Always use forward slashes (/),
    # for all operating systems, INCLUDING Windows
    ################################################## ######################

    $temporary_directory = "./database/";

    ################################################## ######################
    # Your local SMTP Server (alias or IP) such as "smtp.yourdomain.com"
    # eg. "server1;server2;server3" -> specify main and backup server
    ################################################## ######################

    $smtp_server = "smtp.wmail.com.br"; #YOU NEED CHANGE IT !!


    ################################################## ######################
    # You should enable this option if you know what are doing
    ################################################## ######################
    $allow_filters = no;


    ################################################## ######################
    # The maximum size for stored files
    # In order to keep you system fast, use values better than 5MB
    # If you need disable it, set the value to 0 or leave it blank
    ################################################## ######################
    $quota_limit = 4096; // in KB, eg. 4096 Kb = 4MB


    ################################################## ######################
    # Use SMTP password (AUTH LOGIN type)
    ################################################## ######################
    $use_password_for_smtp = yes;

    ################################################## ######################
    # Redirect new users to the preferences page at first login
    ################################################## ######################
    $check_first_login = yes;

    ################################################## ######################
    # Turn this option to 'yes' if you want allow users send messages using
    # they 'Reply to' preference's option as your 'From' header, otherwise
    # the From field will be the email wich the users log in
    ################################################## ######################
    $allow_modified_from = yes;

    ################################################## ######################
    # Language & themes settings
    ################################################## ######################

    require("./inc/config.languages.php");

    ################################################## ######################
    # Security related settings
    ################################################## ######################

    require("./inc/config.security.php");


    ################################################## ######################
    # Server type:
    # allowed values:

    # "DETECT" --------> Guess the pop3 server. If you are running UM
    # in a domain "www.company.com", the script will
    # use "PREFIX.company.com" as your server. you
    # can set the "PREFIX" in the var $mail_detect_prefix.
    # Also, the var $mail_detect_remove can be set
    # to "www.", then the script get rid the "www" and
    # put the prefix, eg. pop3.company.com.br

    #"ONE-FOR-EACH" --> Each domain have your own mail server.
    # The script will load the list of domains/servers from
    # var $mail_servers.

    #"ONE-FOR-ALL" ---> If you use this option, your users must supply the
    # full email address as username. You can set the mail
    # server in the var $default_mail_server
    #

    # LOGIN_TYPE

    # Note. You can supply the LOGIN_TYPE according to your MAIL SERVER.
    # Eg. If your mail server requires usernames in user@domain.com, you must
    # specify the LOGIN_TYPE as "%user%@%domain%". You can combine it according to
    # your server. eg.

    # %user%
    # %user%@%domain%
    # %user%.%domain%
    #
    # PROTOCOL and PORT
    # Choose "imap" as protocol to use the Internet Mail Access Protocol,
    # or "pop3" to use the Post Office Protocol.
    # The default ports are:
    # pop3 -> 110
    # imap -> 143
    # The imap is more fast, but all functions of UebiMiau works with POP3
    ################################################## ######################

    ################################################## ######################

    $mail_server_type = "ONE-FOR-EACH";

    ################################################## ######################
    # TYPE: DETECT
    ################################################## ######################

    $mail_detect_remove = "www.";
    $mail_detect_prefix = "mail.";
    $mail_detect_login_type = "%user%@%domain%";
    $mail_detect_protocol = "pop3";
    $mail_detect_port = "110";
    $mail_detect_folder_prefix = "";

    ################################################## ######################
    # TYPE: ONE-FOR-EACH
    # Each domain have your own mail server
    ################################################## ######################


    $mail_servers[] = Array(
    "domain" => "domain.com",
    "server" => "pop3.domain.com",
    "login_type" => "%user%",
    "protocol" => "pop3",
    "port" => "110",
    "folder_prefix" => ""
    );




    /*
    $mail_servers[] = Array(
    "domain" => "another-domain.com",
    "server" => "mail.another-domain.com",
    "login_type" => "%user%@%domain%",
    "protocol" => "imap",
    "port" => "143",
    "folder_prefix" => "INBOX."
    );

    */

    ################################################## ######################
    # TYPE: ONE-FOR-ALL
    # the default mail server for all domains
    ################################################## ######################

    $default_mail_server = "mail.YOUR-UNIQUE-SERVER.com.br";
    $one_for_all_login_type = "%user%@%domain%";
    $default_protocol = "pop3";
    $default_port = "110";
    $default_folder_prefix = "";


    ################################################## ######################
    # Specify mail transport
    # Allowed values:
    # "smtp" - To use an external SMTP Server specified in $smtp_server
    # "sendmail" - To server's sendmail-compatible MTA. If you need to change
    # the path, look into /inc/class.phpmailer.php and search for
    # var $Sendmail = "/usr/sbin/sendmail";
    # "mail" - To use default PHP's mail() function
    ################################################## ######################

    $mailer_type = "smtp";


    ################################################## ######################
    # In some POP3 servers, if you send a "RETR" command, your
    # message will be automatically deleted
    # This option prevents this inconvenience
    ################################################## ######################

    $mail_use_top = yes;

    ################################################## ######################
    # Name and Version, it's used in many places, like as
    # "X-Mailer" field, footer
    ################################################## ######################

    $appversion = "2.7.8";
    $appname = "UebiMiau";


    ################################################## ######################
    # Add a "footer" to sent mails
    ################################################## ######################

    $footer = "

    ________________________________________________
    Message sent using $appname $appversion
    ";

    ################################################## ######################
    # Enable debug
    # no - disabled
    # 1 or yes -> enabled with full results
    # 2 -> enable with servers communications only
    # ************************************************** ******/
    $enable_debug = no;


    ################################################## ######################
    # Order setting
    ################################################## ######################

    $default_sortby = "date";
    $default_sortorder = "DESC";

    ################################################## ######################
    # Default preferences...
    ################################################## ######################

    $default_preferences = Array(
    "send_to_trash_default" => yes, # send deleted messages to trash
    "st_only_ready_default" => yes, # only read messages, otherwise, delete it
    "save_to_sent_default" => yes, # send sent messages to sent
    "empty_trash_default" => yes, # empty trash on logout
    "sortby_default" => "date", # alowed: "attach","subject","fromname","date","size"
    "sortorder_default" => "DESC", # alowed: "ASC","DESC"
    "rpp_default" => 20, # records per page (messages), alowed: 10,20,30,40,50,100,200
    "add_signature_default" => no, # add the signature by default
    "signature_default" => "", # a default signature for all users, use text only, with multiple lines if needed
    "timezone_default" => "+0000", # timezone, format (+|-)HHMM (H=hours, M=minutes)
    "display_images_default" => yes, # automatically show attached images in the body of message
    "editor_mode_default" => "html", # use "html" or "text" to set default editor. "html" will be used only in IE5+ browsers
    "refresh_time_default" => 10 # after this time, the message list will be refreshed, in minutes
    );
    ?>

  5. #5
    :\

    ma ci sono i blocchi tra ### dove c'è scritto :\

    $smtp_server = "smtp.wmail.com.br";

    questo deve diventare ad es

    $smtp_server = "mail.miosito.net"

    ---

    $quota_limit = 4096

    questo è il limite di spazio...in kappa xora è 4mb

    ---

    $mail_servers[] = Array(
    "domain" => "domain.com",
    "server" => "pop3.domain.com",
    "login_type" => "%user%",
    "protocol" => "pop3",
    "port" => "110",
    "folder_prefix" => ""
    );

    qui devi settare la tua configurazione...quindi ad es

    $mail_servers[] = Array(
    "domain" => "miosito.net",
    "server" => "pop3.miosito.net",
    "login_type" => "%user%",
    "protocol" => "pop3",
    "port" => "110",
    "folder_prefix" => ""
    );

    ---

    Questa aggiunge una scritta in fondo alle mail che invii

    $footer = "

    ________________________________________
    ________
    Message sent using $appname $appversion
    ";

    ovviamente lo puoi cambiare

    ---

    cosi dovremmo esserci

  6. #6
    Qualche minuto che finisco l'upload sul server della cartella: :bubu: l'avevo cancellata

  7. #7
    Originariamente inviato da aeronauta75
    Qualche minuto che finisco l'upload sul server della cartella: :bubu: l'avevo cancellata
    okz

  8. #8
    Non succede nulla!!!
    Se apro la pagina www.miosito.net/webmail/index.php, mi viene fuori una pagina bianca, assolutamente vuota ed il codice HTML di 'sta pagina è:

    <!--
    Page generated by UebiMiau 2.7
    All rights reserved to Aldoir Ventura - aldoir AT users.sourceforge.net
    This is a free software licensed under the GPL terms, see www.gnu.org for more info
    http://uebimiau.sourceforge.net
    -->

  9. #9
    Originariamente inviato da aeronauta75
    Non succede nulla!!!
    Se apro la pagina www.miosito.net/webmail/index.php, mi viene fuori una pagina bianca, assolutamente vuota ed il codice HTML di 'sta pagina è:

    <!--
    Page generated by UebiMiau 2.7
    All rights reserved to Aldoir Ventura - aldoir AT users.sourceforge.net
    This is a free software licensed under the GPL terms, see www.gnu.org for more info
    http://uebimiau.sourceforge.net
    -->
    mmm ma ti sei letto il readme x vedere come si usa?

  10. #10
    Questo è il README. Ho provato a cambiare "mail.miosito.net" in "smtp.miosito.net", ma...niente

    ----------------------------------------------------
    OVERVIEW
    ----------------------------------------------------
    UebiMiau is a web-based e-mail client written in PHP
    It is a free software distributed under GPL terms,
    see www.gnu.org for more informations. You can use or
    redistribute this software, but need preserve the credits
    of author

    ----------------------------------------------------
    DEVELOPER
    ----------------------------------------------------
    Core Developer:
    - Aldoir <aldoir@users.sourceforge.net>


    ----------------------------------------------------
    FEATURES/REQUIREMENTS
    ----------------------------------------------------

    * Working
    ----------------------------------------------------
    - SMTP Compatible
    - POP3 Compatible
    - IMAP Compatible
    - MIME Compatible
    - Receive Attachments
    - Send Attachments
    - Folders/E-mail management support (Trash/Inbox/Sent/[Personal])
    - Address book
    - Language support
    - Themes support
    - Search in messages
    - Personalized order messages
    - Personal preferences
    - Send HTML e-mails
    - Quota Limit

    * Planned
    - Database support

    * NOT Planned
    ----------------------------------------------------
    - PHP3 Port


    * Dependences
    ----------------------------------------------------
    --with-imap PHP module - NO - Have own functions.
    Sendmail/Qmail - OPTIONAL - Manage SMTP servers manually
    Operational System OS - NO - Cross plataform
    Database - NO - Manage data in hard disk
    Client Cookies - OPTIONAL - Manage session manually
    Client JavaScript - YES - To make templates more easy
    PHP - YES - Sure



    Non mi sembra che ci siano esplicite istruzioni. Non dipenderà dal permessi di scrittura o qualcosa del genere? Nell'install c'era qualcosa a riguardo. Non è che devo spostare la directory temporanea in mdb-database (che è l'unica non downlodabile ma accessibile agli script) e cambiarne il percorso nel config? Boh!

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.