so, if %D (not %d) is CD artist, why not use it?
%D is available within EAC only as an element to form the name of the WAV file that EAC generates. %D is not available to pass as a command line argument to the external compression programs like MAREO. If you read one of my previous posts, you will see the listing of all the arguments that can be passed to an external compression program.
You should post your findings, with your react.ini contents and config file contents, to the main REACT thread.
Personally I think your config needs changing, not REACT, or possibly the freedb entry for the third album was not correct, but until we see the details we can't help.
Edit: Ah, I see you have posted to that thread. You really need to post details though, or your concerns will, quite rightly, be ignored.
Here are my config files for REACT. Except for the Config=FLAC_MP3 in react.ini, everything is just as it was after a fresh installation of REACT.
REACT.ini
[Settings]
Config=FLAC_MP3
Version=1.0
EAC=C:\Program Files\Exact Audio Copy\EAC.exe
musicdir=C:\Documents and Settings\Atul K Chhabra\My Documents\My Music
encdir=C:\Program Files\Exact Audio Copy\Encoders
LogFile=
CodePage=1252
MinimizeCompressionWindow=1
ProcessPriority=1
TracksHotKey={F4}
TracksHotVal=+{F5}
SaveTracksCuesheets=0
ImageHotKey={F10}
ImageNaming=$artist$ - ($year$) $album$
Sla_Bks_Col_Qst_Bar_Quo_Ast_Lt_Gt=-|-|-||!|'|#|[|]
Debug=0
FLAC_MP3-tracks.txt
!Description=Tagged FLAC and mp3 files with RG album and track tags
!destdir1=@musicdir@\FLAC\$cdartist$\($year$) $album$
!dest1=@destdir1@\$track$ - $title$
!Various-dest1=@destdir1@\$track$ - $title$ ($artist$)
!destdir2=@musicdir@\MP3\$cdartist$\($year$) $album$
echo.> "@dest1@.tmp"
@encdir@\Tag.exe --nocheck --ape2 -t "ARTIST=@artist@" -t "ALBUM=@album@" -t "TRACK=@track@" -t "TITLE=@title@" -t "YEAR=@year@" -t "GENRE=@genre@" -t "TOTALTRACKS=@numtracks@" -t "FREEDB=@freedbid@" -t "CRC=@crc@" "@dest1@.tmp"
move "@source@" "@dest1@.wav"
if @islast@==1 (
move "@eaclog@" "@destdir1@\eaclog.txt"
move "@trackscuesheet@.[*].cue" "@destdir1@"
start @encdir@\albumart.exe "@artist@" "@album@" "@destdir1@\cover.jpg"
cd /d "@destdir1@"
@encdir@\Glob.exe -v -c @encdir@\flac.exe -f -5 --replay-gain *.wav
echo @encdir@\Tag.exe --fromfile "%%INPUT_NAME%%.tmp" "%%INPUT_NAME%%.flac" > encode.bat
echo @encdir@\lame.exe -V5 --vbr-new --scale %%ALBUM_SCALE%% --tc "AG appl:%%ALBUM_GAIN%%,TG:%%TRACK_GAIN%% dB" "%%INPUT_NAME%%.wav" "@destdir2@\%%INPUT_NAME%%.mp3" >> encode.bat
echo @encdir@\Tag.exe --fromfile "%%INPUT_NAME%%.tmp" "@destdir2@\%%INPUT_NAME%%.mp3" >> encode.bat
echo del "%%INPUT_NAME%%.wav" "%%INPUT_NAME%%.tmp" >> encode.bat
@encdir@\WaveGain.exe -a *.wav --exec call encode.bat
del encode.bat
)