Files
crmPRO/config.php
Jacek Pyziak ba84cdab3d feat: Implement email task import functionality
- Added `import_tasks_from_email` method in `Cron` class to handle task imports from email.
- Created `MailToTaskImporter` class for processing emails and creating tasks based on their content.
- Updated configuration to include IMAP settings for email import.
- Enhanced `Tasks` class with a method to change the client associated with a task.
- Modified task details view to include a dropdown for selecting clients.
- Improved task timer functionality with separate start and stop functions.
- Added logic to handle task work duration validation.
- Updated JavaScript to manage task timers and client changes more effectively.
2026-02-07 00:53:48 +01:00

18 lines
606 B
PHP

<?php
$database['name'] = 'host700513_crmpro';
$database['host'] = 'localhost';
$database['user'] = 'host700513_crmpro';
$database['password'] = '8uDFNjjpwekaNs6zhrqq';
$settings['email_host'] = 'mail.projectpro.pl';
$settings['email_port'] = 25;
$settings['email_login'] = 'www@projectpro.pl';
$settings['email_password'] = 'ProjectPro2025!';
$imap_tasks['host'] = 'host700513.hostido.net.pl';
$imap_tasks['port'] = 993;
$imap_tasks['flags'] = '/imap/ssl/novalidate-cert';
$imap_tasks['folder'] = 'INBOX';
$imap_tasks['username'] = 'zadania@project-pro.pl';
$imap_tasks['password'] = 'ProjectPro2025!';