Thursday, 2011-11-10

*** Joins: soustruh (~Miranda@ip-86-49-121-75.net.upcbroadband.cz)00:00
*** Joins: kirillka (~Miranda@195.242.142.17)00:06
*** Joins: HerbMillerJr (~chatzilla@c-71-206-215-198.hsd1.pa.comcast.net)01:06
*** Joins: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au)02:06
*** Joins: Cupertino (~Cupez@unaffiliated/cupertino)02:26
*** Quits: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net) (Read error: Connection reset by peer)02:42
*** Joins: giallu (~giallu@fedora/giallu)02:54
*** Joins: asm89 (~asm89@unaffiliated/asm89)02:57
*** Joins: Rixie (~Rixie@188.177.20.182)03:07
*** Quits: asm89 (~asm89@unaffiliated/asm89) (Quit: WeeChat 0.3.6)03:20
*** Joins: asm89 (~asm89@unaffiliated/asm89)03:21
*** Joins: extreme002 (~jensen@host-091-097-020-114.ewe-ip-backbone.de)04:30
*** Parts: extreme002 (~jensen@host-091-097-020-114.ewe-ip-backbone.de) ()04:30
*** Parts: Rixie (~Rixie@188.177.20.182) ()04:57
*** Quits: HerbMillerJr (~chatzilla@c-71-206-215-198.hsd1.pa.comcast.net) (Remote host closed the connection)08:03
*** Quits: kirillka (~Miranda@195.242.142.17) (Quit: kirillka)08:49
*** Joins: Rixie (~Rixie@188.177.20.182)09:15
*** Parts: Rixie (~Rixie@188.177.20.182) ()09:17
*** Joins: trea (~Thatcher_@99-109-57-55.lightspeed.mssnks.sbcglobal.net)09:35
*** Joins: Protogenes (~Protogene@cmnz-4db379f9.pool.mediaWays.net)09:48
Protogeneshello09:49
Protogenesi'm trying to integrate a new mantisbt to an existing system and want to integrate user login with my forum database (SMF 2.0).09:52
ProtogenesI found a guide http://www.simplemachines.org/community/index.php?topic=209788.0 which is outdated :( i'm willing to write some code myself, if you point me to the right pieces in mantis source.09:52
Protogenesplease highlight with replies10:19
*** Joins: CGG (~CGG@89.180.52.26)10:28
*** Quits: asm89 (~asm89@unaffiliated/asm89) (Quit: bye!)10:29
CGGHi Everbody, i have a huge problem on mail configuration and i have yet lost some days on this. I configure for a google account and i do the /mantis/admin/test_email.php with success but  the other email notification don't be sended.10:32
CGGCan someone view if my config are correct10:32
CGG<?php10:35
CGG# MantisBT - a php based bugtracking system10:35
CGG# MantisBT is free software: you can redistribute it and/or modify10:35
CGG# it under the terms of the GNU General Public License as published by10:35
CGG# the Free Software Foundation, either version 2 of the License, or10:35
CGG# (at your option) any later version.10:35
CGG#10:35
CGG# MantisBT is distributed in the hope that it will be useful,10:35
CGG# but WITHOUT ANY WARRANTY; without even the implied warranty of10:35
CGG# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the10:35
CGG# GNU General Public License for more details.10:35
CGG#10:35
CGG# You should have received a copy of the GNU General Public License10:35
CGG# along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.10:35
CGG * @package MantisBT10:36
CGG * @copyright Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org10:36
CGG * @copyright Copyright (C) 2002 - 2011  MantisBT Team - mantisbt-dev@lists.sourceforge.net10:36
CGG * @link http://www.mantisbt.org10:36
CGG */10:36
CGG# This sample file contains the essential files that you MUST10:36
CGG# configure to your specific settings.  You may override settings10:36
CGG# from config_defaults_inc.php by assigning new values in this file10:36
CGG# Rename this file to config_inc.php after configuration.10:36
CGG# In general the value OFF means the feature is disabled and ON means the10:36
CGG# feature is enabled.  Any other cases will have an explanation.10:36
CGG# Look in http://www.mantisbt.org/docs/ or config_defaults_inc.php for more10:36
CGG# detailed comments.10:36
CGG# --- Database Configuration ---10:36
CGG$g_hostname      = 'localhost';10:36
CGG$g_db_username   = 'root';10:36
CGG$g_db_password   = '********';10:36
CGG$g_database_name = 'bugtracker_edp';10:36
CGG$g_db_type       = 'mysql';10:36
CGG# --- Anonymous Access / Signup ---10:36
CGG$g_allow_signup                         = OFF;10:36
CGG$g_allow_anonymous_login        = OFF;10:36
CGG$g_anonymous_account            = '';10:36
CGG# --- Email Configuration ---10:36
CGG$g_allow_signup    = ON;  //allows the users to sign up for a new account10:36
CGG$g_enable_email_notification = ON; //enables the email messages10:36
CGG$g_phpMailer_method = PHPMAILER_METHOD_SMTP;10:36
CGG$g_smtp_host = 'smtp.googlemail.com';10:36
CGG$g_smtp_connection_mode = 'tls';10:37
CGG$g_smtp_port =10:37
CGG$g_smtp_port = 587;10:37
CGG$g_smtp_username = 'adminmantis@forumb2b.com'; //replace it with your gmail address10:37
CGG$g_smtp_password = '*********'; //replace it with your gmail password10:37
CGG$g_administrator_email  = 'cgaspar@forumb2b.com';10:37
CGG$g_webmaster_email      = 'cgaspar@forumb2b.com';10:37
CGG$g_from_name                    = 'Mantis Bug Tracker';10:37
CGG$g_from_email           = 'noreply@example.com';        # the "From: " field in emails10:37
CGG$g_return_path_email    = 'admin@example.com';  # the return address for bounced mail10:37
CGG$g_email_receive_own    = ON;10:37
CGG$g_email_send_using_cronjob = ON;10:37
CGG# --- Attachments / File Uploads ---10:37
CGG$g_allow_file_upload    = ON;10:37
CGG$g_file_upload_method   = DATABASE; # or DISK10:37
CGG$g_absolute_path_default_upload_folder = ''; # used with DISK, must contain trailing \ or /.10:37
CGG$g_max_file_size                = 5000000;      # in bytes10:37
CGG$g_preview_attachments_inline_max_size = 256 * 1024;10:37
CGG$g_allowed_files                = '';           # extensions comma separated, e.g. 'php,html,java,exe,pl'10:37
CGG$g_disallowed_files             = '';           # extensions comma separated10:37
CGG# --- Branding ---10:37
CGG$g_window_title                 = 'MantisBT';10:37
CGG$g_logo_image                   = 'images/mantis_logo.gif';10:37
CGG$g_favicon_image                = 'images/favicon.ico';10:37
CGG# --- Real names ---10:37
CGG$g_show_realname = OFF;10:37
CGG$g_show_user_realname_threshold = NOBODY;       # Set to access level (e.g. VIEWER, REPORTER, DEVELOPER, MANAGER, etc)10:37
CGG# --- Others ---10:38
CGG$g_default_home_page = 'my_view_page.php';      # Set to name of page to go to after login10:38
CGG$g_default_language = 'portuguese_standard';10:38
CGG$g_fallback_language = 'english';10:38
CGG$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;10:38
CGG$g_log_destination = 'file:/tmp/mantis_edp.log';10:38
CGGAny help i would apreciate !10:38
*** Quits: Cupertino (~Cupez@unaffiliated/cupertino) (Quit: I give up...)10:55
ProtogenesCGG use pastbin or some service -.-11:20
ProtogenesCGG i don't thin 'adminmantis@forumb2b.com' is an gmail address...11:22
CGGsorry, i will use pastbin :D thanks for the tips. Well here in the company we us the google apps services for mail server11:23
CGGso our mail exchange forward to gmail11:24
CGGi can login in the gmail with that11:24
Protogenesokay11:24
CGGThe problem here is i can do with succes the test_email.php but unsucessfull receive the notification in new account or reset password11:25
Protogeneshttp://www.mantisbt.org/docs/master-1.2.x/en/administration_guide.html#ADMIN.CONFIG.EMAIL11:26
CGGso i ask if my config are everything right ! thnks Protogenes !11:26
Protogenesi don't know. i'm just here waiting to get an response on my own question, just started installing mantis today11:27
CGGhum what  is your question ?!11:27
Protogenesi'm trying to integrate a new mantisbt to an existing system and want to integrate user login with my forum database (SMF 2.0).11:27
ProtogenesI found a guide http://www.simplemachines.org/community/index.php?topic=209788.0 which is outdated :( i'm willing to write some code myself, if you point me to the right pieces in mantis source.11:27
Protogenescgg maybe google blocks mails from example.com? ^^ try to set them to smth custom11:29
CGGProtogenes, you want to develop SSO - single sign one ?!  Well we have here a local open smtp server and that work neither ! :o i'm pissed off about this11:34
Protogenesit works for mediawiki and the forum11:35
ProtogenesSSO maybe, but it is enough for me if the same name and password can be used and only one registration has to be done11:36
*** Joins: asm89 (~asm89@unaffiliated/asm89)11:42
*** Quits: asm89 (~asm89@unaffiliated/asm89) (Client Quit)11:43
*** Joins: asm89 (~asm89@unaffiliated/asm89)11:43
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 258 seconds)12:08
*** Quits: cerf (~quassel@mcl71-3-78-241-52-239.fbx.proxad.net) (Ping timeout: 258 seconds)13:06
*** Joins: Paul24 (~IceChat09@2001:470:9310:aaaa:7098:91ee:31db:1af8)13:45
*** Quits: CGG (~CGG@89.180.52.26) (Quit: Leaving)13:46
*** Quits: Protogenes (~Protogene@cmnz-4db379f9.pool.mediaWays.net) (Ping timeout: 240 seconds)13:46
*** Joins: Protogenes (~Protogene@cmnz-4db379f9.pool.mediaWays.net)13:56
*** Quits: Protogenes (~Protogene@cmnz-4db379f9.pool.mediaWays.net) (Disconnected by services)13:59
*** Joins: Protogenes2 (~Protogene@cmnz-4db379f9.pool.mediaWays.net)13:59
*** Quits: soustruh (~Miranda@ip-86-49-121-75.net.upcbroadband.cz) (Quit: visit http://wormscesky.cz)13:59
*** Quits: Protogenes2 (~Protogene@cmnz-4db379f9.pool.mediaWays.net) (Ping timeout: 240 seconds)14:04
*** Joins: Protogenes (~Protogene@cmnz-4db3641b.pool.mediaWays.net)14:15
*** Joins: Protogenes2 (~Protogene@cmnz-4db3641b.pool.mediaWays.net)14:18
*** Quits: Protogenes (~Protogene@cmnz-4db3641b.pool.mediaWays.net) (Disconnected by services)14:18
*** Quits: Paul24 (~IceChat09@2001:470:9310:aaaa:7098:91ee:31db:1af8) (Quit: Pull the pin and count to what?)14:33
*** Joins: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net)14:51
*** Quits: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net) (Read error: Connection reset by peer)15:27
*** Joins: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net)15:28
*** Joins: fastputty (~fastputty@MTRLPQ02-1177746624.sdsl.bell.ca)16:06
fastputtyi?16:06
fastputtyhi?16:06
*** Quits: asm89 (~asm89@unaffiliated/asm89) (Quit: bye!)16:40
*** Joins: soustruh (~Miranda@50.108.broadband9.iol.cz)17:12
*** Quits: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au) (Remote host closed the connection)17:23
*** Quits: Protogenes2 (~Protogene@cmnz-4db3641b.pool.mediaWays.net) (Ping timeout: 240 seconds)17:46
*** Joins: Protogenes (~Protogene@cmnz-4db3641b.pool.mediaWays.net)17:50
*** Quits: trea (~Thatcher_@99-109-57-55.lightspeed.mssnks.sbcglobal.net) (Quit: Leaving.)18:02
*** Quits: sdfjkljkdfsljkl (~sdfjkljkd@static.96.23.63.178.clients.your-server.de) (Remote host closed the connection)19:00
*** Joins: sdfjkljkdfsljkl (~sdfjkljkd@static.96.23.63.178.clients.your-server.de)19:00
*** Quits: fastputty (~fastputty@MTRLPQ02-1177746624.sdsl.bell.ca) ()19:13
*** Joins: Paul24 (~IceChat09@2001:470:9310:aaaa:3c46:c2c:23a8:e3a5)19:41
*** Quits: Paul24 (~IceChat09@2001:470:9310:aaaa:3c46:c2c:23a8:e3a5) (Client Quit)19:42
*** Quits: soustruh (~Miranda@50.108.broadband9.iol.cz) (Quit: visit http://wormscesky.cz)20:37
*** Joins: WolfpacK (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net)22:14
*** Quits: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net) (Read error: Connection reset by peer)22:15
*** Quits: Protogenes (~Protogene@cmnz-4db3641b.pool.mediaWays.net) (Disconnected by services)22:24
*** Joins: Protogenes (~Protogene@cmnz-4db37154.pool.mediaWays.net)22:24
*** Joins: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net)23:04
*** Quits: WolfpacK (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net) (Read error: Connection reset by peer)23:04
*** Quits: Uly (~ulysses@c-24-2-25-67.hsd1.mo.comcast.net) (Client Quit)23:05

Generated by irclog2html.py 2.10.0 by Marius Gedminas - find it at mg.pov.lt!