Project

General

Profile

Tips Tricks » History » Revision 26

Revision 25 (Per Amundsen, 09/28/2015 11:34 AM) → Revision 26/63 (Per Amundsen, 10/07/2015 04:38 PM)

{{>toc}} 

 h1. Tips 

 h2. Unicode 

 If you ever experience an issue with displaying unicode characters (which is not just an encoding issue), try type: 

 <pre>/setoptions Messages UseDrawText True</pre> 

 This will enable a different method for drawing messages. 

 To disable, type: 

 <pre>/setoptions Messages UseDrawText False</pre> 

 h2. Auth before joining a channel 

 If you need to be authed with nickserv before joining a channel, you can use the [[/sleep]] (or [[/timer]]) command in your serverlist "Run these commands on connect" field: 

 <pre> 
 /msg nickserv identify <password> 
 /sleep 3 /join #channel1,#channel2 
 </pre> 

 /sleep 3, means wait 3 seconds before running the following command. 

 _A dedicated field in the serverlist for this is planned as well as "SASL":http://ircv3.net/specs/extensions/sasl-3.1.html support which makes this a non issue._ 

 h2. Copy text from message buffer 

 When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button. 

 If you prefer to manually press %(key)CTRL% + %(key)C%, you can go to [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] and disable [[Message_Options#AutoCopy-selected-text-to-clipboard|AutoCopy selected text to clipboard]]    and [[Message_Options#AutoFocus-editbox|AutoFocus editbox]]. 

 _These options might be merged into one soon as well as a feature to ask which method to use._ 

 h2. Problem connecting to TLS servers 

 If you experience problems connecting to a TLS only server, you can try the ".NET 4.5":http://adiirc.com/download.php version which has support for TLS 1.1 and TLS 1.2.  

 h2. Disable or changing CTCP VERSION reply 

 You can disable or change the CTCP VERSION reply using the [[CTCP event]] in a small script. 

 This can be used for any CTCP request. 

 <pre> 
 ; Disable CTCP version reply. 
 CTCP *:VERSION:*:halt 

 ; Reply with a custom version. 
 CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt 
 </pre> 

 h2. Disable notification popups/tips 

 Tips for various events can be disabled in [[Options_Dialog|Options]] -> [[Options_Tips|Tips]], to disable highlight tips, go to [[Options_Dialog|Options]] -> [[Options_Highlights|Highlights]], in the listbox area select "$me", then click the "Edit" button, uncheck "Tip message" and click "Save". 

 h2. Client certificates 

 AdiIRC supports only "PFX":https://en.wikipedia.org/wiki/PKCS_12 certificates, you can convert a "PEM":https://en.wikipedia.org/wiki/Privacy-enhanced_Electronic_Mail certificate to "PFX":https://en.wikipedia.org/wiki/PKCSusing this format with "openssl":https://www.openssl.org/ 

 <pre> 
 openssl pkcs12 -export -out mynick.pfx -in mynick.pem 
 </pre>