blob: 3d46d9d9d556608852d3b3f811beb7d94fede351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
;This file contains the information required to get Miranda up and running,
;i.e. everything before a database is loaded
;Settings relating to the location and loading of the database
[Database]
;ProfileDir
;The directory to search for database files. If it's a relative path then
;it's relative to the directory containing miranda32.exe.
;If no directory specified Profles subdirectory in miranda executable
;directory is assumed. You can use environment variables.
;To comply with Windows security guidelines, it is recommended to keep
;your profile in %APPDATA%\Miranda NG
ProfileDir=
;ShowProfileMgr
;Selects the test to use to decide whether to show the profile manager on
;startup
;"never": Only show it if the profile to use can't be guessed by any means
;"yes": Always show it
;"smart": (default) Show it if the command line doesn't contain a db name
; that exists or there is more or less than 1 db in the ProfileDir.
ShowProfileMgr=smart
;DefaultProfile
;Name of the profile to use if there's a choice. If Miranda is run with a
;command line parameter then that is used instead of this setting.
;Default is empty
;If ShowProfileMgr=never then this profile is run without question
;Otherwise the profile manager is run as usual but initially this profile
;is selected
;
;0.4.1+ (2005/05/16) Only: This string can contain environment variables, e.g. %USERNAME%
;
DefaultProfile=
;AutoCreate
;"yes": If DefaultProfile or the command line parameter gives a profile
;name that doesn't exist then that profile is created.
;"no": (default) The profile manager is shown in this case
AutoCreate=no
;AutoExec is a system for batch addition of multiple settings to the database.
;See http://trac.miranda-ng.org/browser/trunk/docs/autoexec_sample.ini for documentation.
[AutoExec]
;Use
;"yes": Install .ini files automatically
;"no": Disable the autoexec system entirely
;"prompt": (default) Prompt the user before each installation
;This setting doesn't affect the decision of whether to display further prompts
Use=yes
;Glob
;A global expression containing the files to watch for database settings
;This will be checked just after database load and continuously all the
;time Miranda is running
;If this contains a relative path, it's relative to the directory containing
;miranda32.exe
;Default: autoexec_*.ini
Glob=autoexec_*.ini
;Safe
;A space-separated list of database module names known to be safe to alter
;Default: CLC Icons CLUI CList SkinSounds PluginUpdater
Safe=CLC Icons CLUI CList SkinSounds PluginUpdater
;Unsafe
;A space-separated list of database module names that could be alter to
;malicious purposes (eg by faking a login server to steal passwords)
;Default: AIM Facebook GG ICQ IRC JABBER MRA MSN SKYPE Tlen TWITTER XFire
Unsafe=AIM Facebook GG ICQ IRC JABBER MRA MSN SKYPE Tlen TWITTER XFire
;OverrideSecurityFilename
;System admins may find it desirable to install settings without prompting
;the user. In that case all prompts and security will be overridden if
;the name of the ini matches the name given here.
;If this is used, make sure it's suitably random and hence not likely
;to be downloaded.
;Default is empty (no override possible)
OverrideSecurityFilename=autoexec_forced_*.ini
;OnCreateFilename
;Defines ini file that will be executed every time new profile is created.
;Default is empty (no override possible)
OnCreateFilename=
;Warn
;"all": Warn the user before each setting change is made
;"notsafe": (default) Warn before each change to a setting in a group
; that isn't listed in the 'Safe' setting
;"onlyunsafe": Warn before each change to a setting in a group that is
; listed in the 'Unsafe' setting
;"none": Never warn the user
Warn=notsafe
;OnCompletion
;What to do with the ini file once it's imported
;"delete": Delete the file from the disk
;"recycle": (default) Move the file to the recycle bin (same as delete
; if you've disabled Windows' recycle bin)
;"rename": Add the string in RenamePrefix to the beginning of the filename
;"leave": Leave the file as-is. Note that this could cause it to be
; imported multiple times until it's moved.
;"ask": Show a dialog to ask the user
OnCompletion=recycle
;RenamePrefix
;A string to add before the filename if the 'rename' option is used for
;OnCompletion. This can include a path specifier to move the file, eg ..\
;Default: done_
RenamePrefix=imported_
; decisions about how Miranda loads plugins
[PluginLoader]
; if enabled, will ask the user if they want to re-enable a disabled plugin
AskAboutIgnoredPlugins=0
; language related settings
[Language]
; DefaultLanguage
; Stores the name of the default language pack to be loaded at startup
; If skipped, loads the first file that matches the langpack_*.txt mask
; DefaultLanguage=langpack_german.txt
DefaultLanguage=
|