OpenBCM V1.08-4-g0592 (Linux)

Login: GUEST @ JH4XSY.13.JNET1.JPN.AS [PM95VU SOK]

Command:
home | newest check | boards | help index | log | ps | userlogin | send sysop | slog | status forward | bcm news | users | version | remove cookie


:::::::::::::::::::::
:: CONVERT EXAMPLE ::
:::::::::::::::::::::
; OpenBCM example file "convert.bcm":
;
; 最初にマッチした行を使用するため、記述の順番は重要
; LT(保存期間)は数字3桁
; 重要! TABは使用禁止、SPACEだけ使用すること!
;
;from    to        LT mode/scan title   ; comment also possible here
;-------------------------------------------------------------------
BAYBOX   BAYBOX   000 $                 ; do not convert if received via S&F
F        F        000 @THEBOX           ; do not convert if address is THEBOX
*        Z        002 <DL3XYZ           ; each bulletin from DL3XYZ to "Z"
DUTCH    RTTY     014 <PA3ESF           ; board DUTCH from PA3ESF to RTTY
*        Z        002 @CBCALL           ; invalid h-address to Z with LT 2
*        AMSAT    180 @AMSAT            ; all @AMSAT to AMSAT
6M*      SIX      090 $                 ; $ = if received from a box
50*      SIX      090 $                 ; $ = if received from a box
TV*      SATTV    180 %                 ; % = if received from a user
*        H        002 &                 ; & = if from a user without PW
*        H        002 & @WW             ; &    "     and @WW
*        H        002 & @EU             ; &    "     and @EU
; タイトルスキャンの例:
*        PROBLEM  014 ?                 ; all questions to PROBLEM with LT 14
*        CONTEST  014 ~CONTEST          ; ~ means word match
*        Z        002 ~NO TEXT          ; if word NO and "TEXT" matches
*        SUCHE    000 WANT              ; if "WANT" anywhere in title
*        BILDER   000 JPG               ; if JPG in title
DX*      QSLMGR   000 QSL
; 正規表現の例 (Help REGular_expressions を参照のこと):
*        Z        002 ^R:99             ; title starts with "R:99"
*        SUCHE    000 ^S:               ; title starts with "S:"
; スペースで区切られた条件の 'and' 組合せの例:
*        SUCHE    000 ? QSL             ; if "?" and "QSL" in title
*        DIPLOME  360 $ @AMSAT ~AWARD DX ; all items must match
; 保存期間だけ変換する例:
KEPLER   *        014 $                 ; if received via S&F
KEPLER   *        014 MIR DAY           ; title depending
; to-フィールドだけ変換する例:
CBMAIL   Z
ASCII    BILDER
JPG      BILDER
; ワイルドカードを使用する例:
IMAGE*   BILDER
DX*      DXNEWS                         ; min. 2 chars before *
;
;
; 正しくない用例 - 使用禁止:
; ------------------------------------------------------------------
;*        AMSAT    180 @ AMSAT          ; wrong, no blank after @, <, or ~
;KEPLER   *        014                  ; wrong, missing mode/scan
;*        *        014 <DL3XYZ          ; wrong, does not work
;
; end of example file