Page 3 of 3

Re: HESK version 2.4 BETA (test version)

Posted: Mon Jul 16, 2012 2:50 pm
by ruffmeister
Hi Klemen,

I am trying POP 3 fetching just as a test the POP 3 connection goes through ok but never logs any calls

any ideas?

Re: HESK version 2.4 BETA (test version)

Posted: Mon Jul 16, 2012 3:33 pm
by Klemen
@lupolo: setting up CRON depends on your server - check your web hosting control panel.

Alternatively there are number of free cron services online:
http://www.google.com/search?q=cron+service

@ruffmeister: when you test POP3 connection is does just that - it tests connection. It doesn't fetch any mail.

To test POP3 fetching see instructions in my second post in this topic.


- - - - - - - - - - - - - - - - - - - - - - -
I will probably have a "release candidate" version ready soon that will fix bugs found and have some minor improvements. Will post here when I do.

Re: HESK version 2.4 BETA (test version)

Posted: Mon Jul 16, 2012 3:34 pm
by Klemen
Also note that a more complete documentation for 2.4 will be written for final release.

Re: HESK version 2.4 BETA (test version)

Posted: Mon Jul 16, 2012 4:04 pm
by lupolo
Diddent notice the second post! There u found the right cron job file!

How to modify the categorie? Where the ticket Will be placed

Re: HESK version 2.4 BETA (test version)

Posted: Mon Jul 16, 2012 4:23 pm
by Klemen
In inc/pipe_functions.inc.php you have

Code: Select all

$tmpvar['category'] 	= 1;
This is the category ID where tickets fetched through pop3/email piping will be inserted.

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 12:02 am
by jrobles
Hello, I have installed Beta version and has worked fine so far, in fact, I gladly appreciate the new "Time Worked" field and I was wondering if it can be included in the screen that the customer looks at when a ticket is closed, that would save me a lot of calls from them asking how much am I going to bill them for that.

Thank you

Jesus Robles.

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 6:08 am
by lupolo
Is it possible to ignore a out a 'out-off-office' reply/mail wenn using the pop fetching?

subject:
Out of Office AutoReply: [#<TICKET>] Nieuwe ticket: .....

(maybe only wenn the subject begins with 'out of office' ) ?

because it will auto create a new ticket, in my case from a supporter/co-worker who also is using the Hesk system and receice the new ticket information. And if its a reply from the customer also strip it to keep the system clean.

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 6:41 am
by lupolo
Other question regarding the pop fetching .. is it possible wenn you have enables muliple email that the people in the CC are add to the ticket also?

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 2:43 pm
by Klemen
@Jesus

You could probably use something like

Code: Select all

	<tr>
	<td valign="top"><?php echo $hesklang['ts']; ?>:</td>
    <td><?php echo $ticket['time_worked']; ?></td>
	</tr>
in ticket.php file, just before

Code: Select all

		</table>

    <!-- END TICKET HEAD -->
@lupolo

In inc/pipe_functions.inc.php find

Code: Select all

strpos('DELIVERY FAILURE',							$tmpvar['subject'])	!== false ||
and just below try something like

Code: Select all

strpos('out of office',		strtolower($tmpvar['subject'])) !== false ||

CC would need some more checking and will probably not be included in 2.4 yet.

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 6:00 pm
by jrobles
Thanks Klemen! That worked, although it prints unaligned right under "Priority" but I think my problem is solved, I will try to learn how to do the formatting, I hope you include that in the final version o better yet, give the administrator the choice of including it as a custimizable parameter, that would be something like:
[ ] show "Time Worked" in final end user report

Regards!

JR

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 7:04 pm
by Klemen
I think it would be even better to use this as a "per ticket" option so you can decide for each ticket if you wish to show the time worked or not. And perhaps only show it when the ticket reaches a "Resolved" status?

Anyway, a lot of ideas, just don't expect all in version 2.4 as it's way too far developed to include much new stuff.

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 7:07 pm
by Klemen
P.s.: it aligns properly for me, just make sure you paste that code above the </table> (see my original post)

Re: HESK version 2.4 BETA (test version)

Posted: Tue Jul 17, 2012 7:23 pm
by jrobles
Any of those ideas sound great and are more than welcome in final version. You were right, I placed the code somewhere else in the first place, I corrected it and it diplays aligend now!

Thanks,

JR

Re: HESK version 2.4 BETA (test version)

Posted: Wed Jul 18, 2012 7:03 pm
by Klemen
As of now HESK 2.4 RELEASE CANDIDATE version is available:
HESK 2.4 RC TOPIC

Changes from 2.4 BETA:
- fixed several bugs identified in BETA
- new settings option: "From:" name

Upgrade from HESK 2.4 BETA
- Upload all 2.4 RC files to your server except: hesk_settings.inc.php, footer.txt, header.txt
- Go to Admin panel > Settings and click the Save changes button at the bottom.
- Test everything to make sure it works OK

When will final version be ready?
Final release is planned for 2nd week of August.


Thank you to everyone who tested this BETA version!