Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content
This repository has been archived by the owner on Dec 22, 2018. It is now read-only.

Releases: ivaldi/brimir

Modify attachment path

06 Jun 12:25
Compare
Choose a tag to compare

This release modifies the attachments path, to include less directories. You can run the following bash script to rename all your existing attachments. This also fixes some filenames being different than expected:

for i in `find . -type f`; do
  mv $i `dirname $i`.${i##*.};
done

Incoming ticket fix

11 Apr 13:51
Compare
Choose a tag to compare

Last release introduced a bug where an MTA could not create new tickets. We've fixed the bug and added tests to prevent this in the future.

Customer logins

14 Mar 15:08
Compare
Choose a tag to compare

This release adds the ability for customer to login and view their tickets, replies and attachments. Adding new content such as tickets or replies is not yet supported. In order to secure the viewing of attachments, we had to move the uploads directory from public/system to data/. You should do the same by running something like this in your Brimir directory:

mv public/system data/

Without this, all thumbnails and file attachments will not be accessible from the interface.