├── .clang-format ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── dovecot ├── configuration │ ├── conf.d │ │ ├── 10-auth.conf │ │ ├── 10-director.conf │ │ ├── 10-logging.conf.erb │ │ ├── 10-mail.conf │ │ ├── 10-master.conf.erb │ │ ├── 10-ssl.conf │ │ ├── 15-lda.conf │ │ ├── 15-mailboxes.conf │ │ ├── 20-imap.conf │ │ ├── 20-lmtp.conf │ │ ├── 20-pop3.conf │ │ ├── 90-acl.conf │ │ ├── 90-plugin.conf │ │ ├── 90-quota.conf │ │ ├── 95-mruby.conf │ │ ├── 95-mruby.conf.erb │ │ ├── auth-checkpassword.conf.ext │ │ ├── auth-deny.conf.ext │ │ ├── auth-dict.conf.ext │ │ ├── auth-ldap.conf.ext │ │ ├── auth-master.conf.ext │ │ ├── auth-passwdfile.conf.ext.erb │ │ ├── auth-sql.conf.ext │ │ ├── auth-sql.conf.ext.erb │ │ ├── auth-static.conf.ext │ │ ├── auth-system.conf.ext │ │ └── auth-vpopmail.conf.ext │ ├── dovecot-sql.conf.ext.erb │ ├── dovecot.conf.erb │ ├── mailservice.sqlite │ ├── mruby_handler │ │ ├── command_register.rb │ │ └── pre_post_capability.rb │ └── passwd ├── home │ └── test │ │ └── .gitkeep ├── log │ └── .gitkeep └── script │ ├── mail-filter-out.sh │ └── mail-filter.sh ├── misc ├── apply-clang-format └── update-subtree ├── spec ├── fixtures │ ├── mail-1.eml │ ├── mail-2.eml │ ├── mail-3.eml │ └── mail-4.eml ├── helper.rb ├── integration │ ├── imap_session_spec.rb │ ├── normal_mail_spec.rb │ └── test_spec.rb.tmpl └── lib │ ├── administrator.rb │ ├── database.rb │ ├── mailer.rb │ ├── mailer │ ├── imap.rb │ ├── imap │ │ └── session.rb │ └── lmtp.rb │ └── storage.rb ├── src ├── build_config.rb ├── imap-mruby-plugin-imap.c ├── imap-mruby-plugin-imap.h ├── imap-mruby-plugin-init.c ├── imap-mruby-plugin-init.h ├── imap-mruby-plugin.c ├── imap-mruby-plugin.h └── mruby │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── .travis.yml │ ├── .yardopts │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LEGAL │ ├── MITL │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── Rakefile │ ├── TODO │ ├── appveyor.yml │ ├── appveyor_config.rb │ ├── benchmark │ ├── bm_ao_render.rb │ ├── bm_app_lc_fizzbuzz.rb │ ├── bm_fib.rb │ ├── bm_so_lists.rb │ ├── build_config_boxing.rb │ ├── build_config_cc.rb │ └── plot.gpl │ ├── bin │ └── .gitkeep │ ├── build_config.rb │ ├── doc │ ├── guides │ │ ├── compile.md │ │ ├── debugger.md │ │ ├── gc-arena-howto.md │ │ ├── mrbconf.md │ │ └── mrbgems.md │ └── limitations.md │ ├── examples │ ├── mrbgems │ │ ├── c_and_ruby_extension_example │ │ │ ├── README.md │ │ │ ├── mrbgem.rake │ │ │ ├── mrblib │ │ │ │ └── example.rb │ │ │ ├── src │ │ │ │ └── example.c │ │ │ └── test │ │ │ │ └── example.rb │ │ ├── c_extension_example │ │ │ ├── README.md │ │ │ ├── mrbgem.rake │ │ │ ├── src │ │ │ │ └── example.c │ │ │ └── test │ │ │ │ ├── example.c │ │ │ │ └── example.rb │ │ └── ruby_extension_example │ │ │ ├── README.md │ │ │ ├── mrbgem.rake │ │ │ ├── mrblib │ │ │ └── example.rb │ │ │ └── test │ │ │ └── example.rb │ └── targets │ │ ├── build_config_ArduinoDue.rb │ │ ├── build_config_IntelEdison.rb │ │ ├── build_config_IntelGalileo.rb │ │ ├── build_config_RX630.rb │ │ ├── build_config_android_arm64-v8a.rb │ │ ├── build_config_android_armeabi.rb │ │ ├── build_config_android_armeabi_v7a_neon_hard.rb │ │ └── build_config_chipKITMax32.rb │ ├── include │ ├── mrbconf.h │ ├── mruby.h │ └── mruby │ │ ├── array.h │ │ ├── boxing_nan.h │ │ ├── boxing_no.h │ │ ├── boxing_word.h │ │ ├── class.h │ │ ├── common.h │ │ ├── compile.h │ │ ├── data.h │ │ ├── debug.h │ │ ├── dump.h │ │ ├── error.h │ │ ├── gc.h │ │ ├── hash.h │ │ ├── irep.h │ │ ├── istruct.h │ │ ├── khash.h │ │ ├── numeric.h │ │ ├── object.h │ │ ├── opcode.h │ │ ├── proc.h │ │ ├── range.h │ │ ├── re.h │ │ ├── string.h │ │ ├── throw.h │ │ ├── value.h │ │ ├── variable.h │ │ └── version.h │ ├── lib │ ├── mruby-core-ext.rb │ └── mruby │ │ ├── build.rb │ │ ├── build │ │ ├── command.rb │ │ └── load_gems.rb │ │ ├── gem.rb │ │ └── source.rb │ ├── minirake │ ├── mrbgems │ ├── default.gembox │ ├── full-core.gembox │ ├── mruby-array-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── array.rb │ │ ├── src │ │ │ └── array.c │ │ └── test │ │ │ └── array.rb │ ├── mruby-bin-debugger │ │ ├── bintest │ │ │ ├── mrdb.rb │ │ │ └── print.rb │ │ ├── mrbgem.rake │ │ └── tools │ │ │ └── mrdb │ │ │ ├── apibreak.c │ │ │ ├── apibreak.h │ │ │ ├── apilist.c │ │ │ ├── apilist.h │ │ │ ├── apiprint.c │ │ │ ├── apiprint.h │ │ │ ├── cmdbreak.c │ │ │ ├── cmdmisc.c │ │ │ ├── cmdprint.c │ │ │ ├── cmdrun.c │ │ │ ├── mrdb.c │ │ │ ├── mrdb.h │ │ │ ├── mrdbconf.h │ │ │ └── mrdberror.h │ ├── mruby-bin-mirb │ │ ├── bintest │ │ │ └── mirb.rb │ │ ├── mrbgem.rake │ │ └── tools │ │ │ └── mirb │ │ │ └── mirb.c │ ├── mruby-bin-mrbc │ │ ├── mrbgem.rake │ │ └── tools │ │ │ └── mrbc │ │ │ └── mrbc.c │ ├── mruby-bin-mruby-config │ │ ├── mrbgem.rake │ │ ├── mruby-config │ │ └── mruby-config.bat │ ├── mruby-bin-mruby │ │ ├── bintest │ │ │ └── mruby.rb │ │ ├── mrbgem.rake │ │ └── tools │ │ │ └── mruby │ │ │ └── mruby.c │ ├── mruby-bin-strip │ │ ├── bintest │ │ │ └── mruby-strip.rb │ │ ├── mrbgem.rake │ │ └── tools │ │ │ └── mruby-strip │ │ │ └── mruby-strip.c │ ├── mruby-class-ext │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── class.c │ │ └── test │ │ │ └── module.rb │ ├── mruby-compar-ext │ │ ├── mrbgem.rake │ │ └── mrblib │ │ │ └── compar.rb │ ├── mruby-compiler │ │ ├── bintest │ │ │ └── mrbc.rb │ │ ├── core │ │ │ ├── codegen.c │ │ │ ├── keywords │ │ │ ├── lex.def │ │ │ ├── node.h │ │ │ └── parse.y │ │ └── mrbgem.rake │ ├── mruby-enum-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── enum.rb │ │ └── test │ │ │ └── enum.rb │ ├── mruby-enum-lazy │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── lazy.rb │ │ └── test │ │ │ └── lazy.rb │ ├── mruby-enumerator │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── enumerator.rb │ │ └── test │ │ │ └── enumerator.rb │ ├── mruby-error │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── exception.c │ │ └── test │ │ │ ├── exception.c │ │ │ └── exception.rb │ ├── mruby-eval │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── eval.c │ │ └── test │ │ │ └── eval.rb │ ├── mruby-exit │ │ ├── mrbgem.rake │ │ └── src │ │ │ └── mruby-exit.c │ ├── mruby-fiber │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── fiber.c │ │ └── test │ │ │ └── fiber.rb │ ├── mruby-hash-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── hash.rb │ │ ├── src │ │ │ └── hash-ext.c │ │ └── test │ │ │ └── hash.rb │ ├── mruby-inline-struct │ │ ├── mrbgem.rake │ │ └── test │ │ │ ├── inline.c │ │ │ └── inline.rb │ ├── mruby-io │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── include │ │ │ └── mruby │ │ │ │ └── ext │ │ │ │ └── io.h │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ ├── file.rb │ │ │ ├── file_constants.rb │ │ │ ├── io.rb │ │ │ └── kernel.rb │ │ ├── run_test.rb │ │ ├── src │ │ │ ├── file.c │ │ │ ├── file_test.c │ │ │ ├── io.c │ │ │ └── mruby_io_gem.c │ │ └── test │ │ │ ├── file.rb │ │ │ ├── file_test.rb │ │ │ ├── gc_filedes.sh │ │ │ ├── io.rb │ │ │ └── mruby_io_test.c │ ├── mruby-kernel-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── kernel.rb │ │ ├── src │ │ │ └── kernel.c │ │ └── test │ │ │ └── kernel.rb │ ├── mruby-math │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── math.c │ │ └── test │ │ │ └── math.rb │ ├── mruby-method │ │ ├── README.md │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ ├── kernel.rb │ │ │ ├── method.rb │ │ │ └── unbound_method.rb │ │ ├── src │ │ │ └── method.c │ │ └── test │ │ │ └── method.rb │ ├── mruby-numeric-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── numeric_ext.rb │ │ ├── src │ │ │ └── numeric_ext.c │ │ └── test │ │ │ └── numeric.rb │ ├── mruby-object-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── object.rb │ │ ├── src │ │ │ └── object.c │ │ └── test │ │ │ ├── nil.rb │ │ │ └── object.rb │ ├── mruby-objectspace │ │ ├── mrbgem.rake │ │ ├── src │ │ │ └── mruby_objectspace.c │ │ └── test │ │ │ └── objectspace.rb │ ├── mruby-pack │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── mrbgem.rake │ │ ├── packtest.rb │ │ ├── run_test.rb │ │ ├── src │ │ │ └── pack.c │ │ └── test │ │ │ └── pack.rb │ ├── mruby-print │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── print.rb │ │ └── src │ │ │ └── print.c │ ├── mruby-proc-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── proc.rb │ │ ├── src │ │ │ └── proc.c │ │ └── test │ │ │ ├── proc.c │ │ │ └── proc.rb │ ├── mruby-random │ │ ├── mrbgem.rake │ │ ├── src │ │ │ ├── mt19937ar.c │ │ │ ├── mt19937ar.h │ │ │ ├── random.c │ │ │ └── random.h │ │ └── test │ │ │ └── random.rb │ ├── mruby-range-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── range.rb │ │ ├── src │ │ │ └── range.c │ │ └── test │ │ │ └── range.rb │ ├── mruby-socket │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── socket.rb │ │ ├── run_test.rb │ │ ├── src │ │ │ ├── const.cstub │ │ │ ├── const.def │ │ │ ├── gen.rb │ │ │ └── socket.c │ │ └── test │ │ │ ├── addrinfo.rb │ │ │ ├── basicsocket.rb │ │ │ ├── ipsocket.rb │ │ │ ├── socket.rb │ │ │ ├── sockettest.c │ │ │ ├── tcpsocket.rb │ │ │ ├── udpsocket.rb │ │ │ └── unix.rb │ ├── mruby-sprintf │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── string.rb │ │ ├── src │ │ │ ├── kernel.c │ │ │ └── sprintf.c │ │ └── test │ │ │ └── sprintf.rb │ ├── mruby-string-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── string.rb │ │ ├── src │ │ │ └── string.c │ │ └── test │ │ │ └── string.rb │ ├── mruby-struct │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── struct.rb │ │ ├── src │ │ │ └── struct.c │ │ └── test │ │ │ └── struct.rb │ ├── mruby-symbol-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── symbol.rb │ │ ├── src │ │ │ └── symbol.c │ │ └── test │ │ │ └── symbol.rb │ ├── mruby-test │ │ ├── README.md │ │ ├── driver.c │ │ ├── init_mrbtest.c │ │ └── mrbgem.rake │ ├── mruby-time │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ │ └── time.rb │ │ ├── src │ │ │ └── time.c │ │ └── test │ │ │ └── time.rb │ └── mruby-toplevel-ext │ │ ├── mrbgem.rake │ │ ├── mrblib │ │ └── toplevel.rb │ │ └── test │ │ └── toplevel.rb │ ├── mrblib │ ├── 00class.rb │ ├── 10error.rb │ ├── array.rb │ ├── compar.rb │ ├── enum.rb │ ├── float.rb │ ├── hash.rb │ ├── init_mrblib.c │ ├── kernel.rb │ ├── mrblib.rake │ ├── numeric.rb │ ├── range.rb │ └── string.rb │ ├── mruby-source.gemspec │ ├── src │ ├── array.c │ ├── backtrace.c │ ├── class.c │ ├── codedump.c │ ├── compar.c │ ├── crc.c │ ├── debug.c │ ├── dump.c │ ├── enum.c │ ├── error.c │ ├── error.h │ ├── etc.c │ ├── ext │ │ └── .gitkeep │ ├── fmt_fp.c │ ├── gc.c │ ├── hash.c │ ├── init.c │ ├── kernel.c │ ├── load.c │ ├── mruby_core.rake │ ├── numeric.c │ ├── object.c │ ├── opcode.h │ ├── pool.c │ ├── print.c │ ├── proc.c │ ├── range.c │ ├── state.c │ ├── string.c │ ├── symbol.c │ ├── value_array.h │ ├── variable.c │ ├── version.c │ └── vm.c │ ├── tasks │ ├── benchmark.rake │ ├── gitlab.rake │ ├── libmruby.rake │ ├── mrbgems.rake │ └── toolchains │ │ ├── android.rake │ │ ├── clang.rake │ │ ├── gcc.rake │ │ ├── openwrt.rake │ │ └── visualcpp.rake │ ├── test │ ├── assert.rb │ ├── bintest.rb │ ├── report.rb │ └── t │ │ ├── argumenterror.rb │ │ ├── array.rb │ │ ├── basicobject.rb │ │ ├── bs_block.rb │ │ ├── bs_literal.rb │ │ ├── class.rb │ │ ├── codegen.rb │ │ ├── comparable.rb │ │ ├── ensure.rb │ │ ├── enumerable.rb │ │ ├── exception.rb │ │ ├── false.rb │ │ ├── float.rb │ │ ├── gc.rb │ │ ├── hash.rb │ │ ├── indexerror.rb │ │ ├── integer.rb │ │ ├── iterations.rb │ │ ├── kernel.rb │ │ ├── lang.rb │ │ ├── literals.rb │ │ ├── localjumperror.rb │ │ ├── methods.rb │ │ ├── module.rb │ │ ├── nameerror.rb │ │ ├── nil.rb │ │ ├── nomethoderror.rb │ │ ├── numeric.rb │ │ ├── object.rb │ │ ├── proc.rb │ │ ├── range.rb │ │ ├── rangeerror.rb │ │ ├── regexperror.rb │ │ ├── runtimeerror.rb │ │ ├── standarderror.rb │ │ ├── string.rb │ │ ├── superclass.rb │ │ ├── symbol.rb │ │ ├── syntax.rb │ │ ├── true.rb │ │ ├── typeerror.rb │ │ └── unicode.rb │ └── travis_config.rb └── task ├── dovecot.rb ├── lib └── context.rb └── spec.rb /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/Rakefile -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-auth.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-director.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-director.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-logging.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-logging.conf.erb -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-mail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-mail.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-master.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-master.conf.erb -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/10-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/10-ssl.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/15-lda.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/15-lda.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/15-mailboxes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/15-mailboxes.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/20-imap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/20-imap.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/20-lmtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/20-lmtp.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/20-pop3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/20-pop3.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/90-acl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/90-acl.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/90-plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/90-plugin.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/90-quota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/90-quota.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/95-mruby.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/95-mruby.conf -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/95-mruby.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/95-mruby.conf.erb -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-checkpassword.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-checkpassword.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-deny.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-deny.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-dict.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-dict.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-ldap.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-ldap.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-master.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-master.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-passwdfile.conf.ext.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-passwdfile.conf.ext.erb -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-sql.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-sql.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-sql.conf.ext.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-sql.conf.ext.erb -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-static.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-static.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-system.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-system.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/conf.d/auth-vpopmail.conf.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/conf.d/auth-vpopmail.conf.ext -------------------------------------------------------------------------------- /dovecot/configuration/dovecot-sql.conf.ext.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/dovecot-sql.conf.ext.erb -------------------------------------------------------------------------------- /dovecot/configuration/dovecot.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/dovecot.conf.erb -------------------------------------------------------------------------------- /dovecot/configuration/mailservice.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/mailservice.sqlite -------------------------------------------------------------------------------- /dovecot/configuration/mruby_handler/command_register.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/mruby_handler/command_register.rb -------------------------------------------------------------------------------- /dovecot/configuration/mruby_handler/pre_post_capability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/mruby_handler/pre_post_capability.rb -------------------------------------------------------------------------------- /dovecot/configuration/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/configuration/passwd -------------------------------------------------------------------------------- /dovecot/home/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dovecot/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dovecot/script/mail-filter-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/script/mail-filter-out.sh -------------------------------------------------------------------------------- /dovecot/script/mail-filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/dovecot/script/mail-filter.sh -------------------------------------------------------------------------------- /misc/apply-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/misc/apply-clang-format -------------------------------------------------------------------------------- /misc/update-subtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/misc/update-subtree -------------------------------------------------------------------------------- /spec/fixtures/mail-1.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/fixtures/mail-1.eml -------------------------------------------------------------------------------- /spec/fixtures/mail-2.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/fixtures/mail-2.eml -------------------------------------------------------------------------------- /spec/fixtures/mail-3.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/fixtures/mail-3.eml -------------------------------------------------------------------------------- /spec/fixtures/mail-4.eml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/fixtures/mail-4.eml -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/helper.rb -------------------------------------------------------------------------------- /spec/integration/imap_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/integration/imap_session_spec.rb -------------------------------------------------------------------------------- /spec/integration/normal_mail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/integration/normal_mail_spec.rb -------------------------------------------------------------------------------- /spec/integration/test_spec.rb.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/integration/test_spec.rb.tmpl -------------------------------------------------------------------------------- /spec/lib/administrator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/administrator.rb -------------------------------------------------------------------------------- /spec/lib/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/database.rb -------------------------------------------------------------------------------- /spec/lib/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/mailer.rb -------------------------------------------------------------------------------- /spec/lib/mailer/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/mailer/imap.rb -------------------------------------------------------------------------------- /spec/lib/mailer/imap/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/mailer/imap/session.rb -------------------------------------------------------------------------------- /spec/lib/mailer/lmtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/mailer/lmtp.rb -------------------------------------------------------------------------------- /spec/lib/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/spec/lib/storage.rb -------------------------------------------------------------------------------- /src/build_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/build_config.rb -------------------------------------------------------------------------------- /src/imap-mruby-plugin-imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin-imap.c -------------------------------------------------------------------------------- /src/imap-mruby-plugin-imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin-imap.h -------------------------------------------------------------------------------- /src/imap-mruby-plugin-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin-init.c -------------------------------------------------------------------------------- /src/imap-mruby-plugin-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin-init.h -------------------------------------------------------------------------------- /src/imap-mruby-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin.c -------------------------------------------------------------------------------- /src/imap-mruby-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/imap-mruby-plugin.h -------------------------------------------------------------------------------- /src/mruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/.gitignore -------------------------------------------------------------------------------- /src/mruby/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/.gitlab-ci.yml -------------------------------------------------------------------------------- /src/mruby/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/.travis.yml -------------------------------------------------------------------------------- /src/mruby/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/.yardopts -------------------------------------------------------------------------------- /src/mruby/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/AUTHORS -------------------------------------------------------------------------------- /src/mruby/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/mruby/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/LEGAL -------------------------------------------------------------------------------- /src/mruby/MITL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/MITL -------------------------------------------------------------------------------- /src/mruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/Makefile -------------------------------------------------------------------------------- /src/mruby/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/NEWS -------------------------------------------------------------------------------- /src/mruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/README.md -------------------------------------------------------------------------------- /src/mruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/Rakefile -------------------------------------------------------------------------------- /src/mruby/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/TODO -------------------------------------------------------------------------------- /src/mruby/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/appveyor.yml -------------------------------------------------------------------------------- /src/mruby/appveyor_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/appveyor_config.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/bm_ao_render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/bm_ao_render.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/bm_app_lc_fizzbuzz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/bm_app_lc_fizzbuzz.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/bm_fib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/bm_fib.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/bm_so_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/bm_so_lists.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/build_config_boxing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/build_config_boxing.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/build_config_cc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/build_config_cc.rb -------------------------------------------------------------------------------- /src/mruby/benchmark/plot.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/benchmark/plot.gpl -------------------------------------------------------------------------------- /src/mruby/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mruby/build_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/build_config.rb -------------------------------------------------------------------------------- /src/mruby/doc/guides/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/guides/compile.md -------------------------------------------------------------------------------- /src/mruby/doc/guides/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/guides/debugger.md -------------------------------------------------------------------------------- /src/mruby/doc/guides/gc-arena-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/guides/gc-arena-howto.md -------------------------------------------------------------------------------- /src/mruby/doc/guides/mrbconf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/guides/mrbconf.md -------------------------------------------------------------------------------- /src/mruby/doc/guides/mrbgems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/guides/mrbgems.md -------------------------------------------------------------------------------- /src/mruby/doc/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/doc/limitations.md -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_and_ruby_extension_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_and_ruby_extension_example/README.md -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_and_ruby_extension_example/test/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_and_ruby_extension_example/test/example.rb -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_extension_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_extension_example/README.md -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_extension_example/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_extension_example/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_extension_example/src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_extension_example/src/example.c -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_extension_example/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_extension_example/test/example.c -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/c_extension_example/test/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/c_extension_example/test/example.rb -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/ruby_extension_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/ruby_extension_example/README.md -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb -------------------------------------------------------------------------------- /src/mruby/examples/mrbgems/ruby_extension_example/test/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/mrbgems/ruby_extension_example/test/example.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_ArduinoDue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_ArduinoDue.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_IntelEdison.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_IntelEdison.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_IntelGalileo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_IntelGalileo.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_RX630.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_RX630.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_android_arm64-v8a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_android_arm64-v8a.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_android_armeabi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_android_armeabi.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_android_armeabi_v7a_neon_hard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_android_armeabi_v7a_neon_hard.rb -------------------------------------------------------------------------------- /src/mruby/examples/targets/build_config_chipKITMax32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/examples/targets/build_config_chipKITMax32.rb -------------------------------------------------------------------------------- /src/mruby/include/mrbconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mrbconf.h -------------------------------------------------------------------------------- /src/mruby/include/mruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/array.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/boxing_nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/boxing_nan.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/boxing_no.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/boxing_no.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/boxing_word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/boxing_word.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/class.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/common.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/compile.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/data.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/debug.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/dump.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/error.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/gc.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/hash.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/irep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/irep.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/istruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/istruct.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/khash.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/numeric.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/object.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/opcode.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/proc.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/range.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/re.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/string.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/throw.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/value.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/variable.h -------------------------------------------------------------------------------- /src/mruby/include/mruby/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/include/mruby/version.h -------------------------------------------------------------------------------- /src/mruby/lib/mruby-core-ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby-core-ext.rb -------------------------------------------------------------------------------- /src/mruby/lib/mruby/build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby/build.rb -------------------------------------------------------------------------------- /src/mruby/lib/mruby/build/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby/build/command.rb -------------------------------------------------------------------------------- /src/mruby/lib/mruby/build/load_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby/build/load_gems.rb -------------------------------------------------------------------------------- /src/mruby/lib/mruby/gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby/gem.rb -------------------------------------------------------------------------------- /src/mruby/lib/mruby/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/lib/mruby/source.rb -------------------------------------------------------------------------------- /src/mruby/minirake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/minirake -------------------------------------------------------------------------------- /src/mruby/mrbgems/default.gembox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/default.gembox -------------------------------------------------------------------------------- /src/mruby/mrbgems/full-core.gembox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/full-core.gembox -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-array-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-array-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-array-ext/mrblib/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-array-ext/mrblib/array.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-array-ext/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-array-ext/src/array.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-array-ext/test/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-array-ext/test/array.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mrbc/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mrbc/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby-config/mruby-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby-config/mruby-config -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-strip/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-strip/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-class-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-class-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-class-ext/src/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-class-ext/src/class.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-class-ext/test/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-class-ext/test/module.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compar-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compar-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compar-ext/mrblib/compar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compar-ext/mrblib/compar.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/bintest/mrbc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/bintest/mrbc.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/core/codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/core/codegen.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/core/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/core/keywords -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/core/lex.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/core/lex.def -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/core/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/core/node.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/core/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/core/parse.y -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-compiler/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-compiler/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-ext/test/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-ext/test/enum.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enumerator/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enumerator/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-enumerator/test/enumerator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-enumerator/test/enumerator.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-error/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-error/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-error/src/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-error/src/exception.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-error/test/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-error/test/exception.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-error/test/exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-error/test/exception.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-eval/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-eval/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-eval/src/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-eval/src/eval.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-eval/test/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-eval/test/eval.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-exit/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-exit/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-exit/src/mruby-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-exit/src/mruby-exit.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-fiber/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-fiber/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-fiber/src/fiber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-fiber/src/fiber.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-fiber/test/fiber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-fiber/test/fiber.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-hash-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-hash-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-hash-ext/test/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-hash-ext/test/hash.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-inline-struct/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-inline-struct/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-inline-struct/test/inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-inline-struct/test/inline.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-inline-struct/test/inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-inline-struct/test/inline.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/.travis.yml -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/README.md -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/include/mruby/ext/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/include/mruby/ext/io.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/mrblib/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/mrblib/file.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/mrblib/file_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/mrblib/file_constants.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/mrblib/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/mrblib/io.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/mrblib/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/mrblib/kernel.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/run_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/run_test.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/src/file.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/src/file_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/src/file_test.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/src/io.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/src/mruby_io_gem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/src/mruby_io_gem.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/test/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/test/file.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/test/file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/test/file_test.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/test/gc_filedes.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ulimit -n 20 4 | mruby -e '100.times { File.open "'$0'" }' 5 | -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/test/io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/test/io.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-io/test/mruby_io_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-io/test/mruby_io_test.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-kernel-ext/mrblib/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-kernel-ext/mrblib/kernel.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-kernel-ext/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-kernel-ext/src/kernel.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-math/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-math/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-math/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-math/src/math.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-math/test/math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-math/test/math.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/README.md -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/mrblib/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/mrblib/kernel.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/mrblib/method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/mrblib/method.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/mrblib/unbound_method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/mrblib/unbound_method.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/src/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/src/method.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-method/test/method.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-method/test/method.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-object-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-object-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-object-ext/mrblib/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-object-ext/mrblib/object.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-object-ext/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-object-ext/src/object.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-object-ext/test/nil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-object-ext/test/nil.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-object-ext/test/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-object-ext/test/object.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-objectspace/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-objectspace/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-objectspace/test/objectspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-objectspace/test/objectspace.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/.gitignore: -------------------------------------------------------------------------------- 1 | gem_* 2 | gem-* 3 | mrb-*.a 4 | src/*.o 5 | /tmp 6 | -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/.travis.yml -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/README.md -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/packtest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/packtest.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/run_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/run_test.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/src/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/src/pack.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-pack/test/pack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-pack/test/pack.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-print/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-print/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-print/mrblib/print.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-print/mrblib/print.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-print/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-print/src/print.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-proc-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-proc-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-proc-ext/mrblib/proc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-proc-ext/mrblib/proc.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-proc-ext/src/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-proc-ext/src/proc.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-proc-ext/test/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-proc-ext/test/proc.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-proc-ext/test/proc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-proc-ext/test/proc.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/src/mt19937ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/src/mt19937ar.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/src/mt19937ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/src/mt19937ar.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/src/random.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/src/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/src/random.h -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-random/test/random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-random/test/random.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-range-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-range-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-range-ext/mrblib/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-range-ext/mrblib/range.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-range-ext/src/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-range-ext/src/range.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-range-ext/test/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-range-ext/test/range.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/.travis.yml -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/README.md -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/mrblib/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/mrblib/socket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/run_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/run_test.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/src/const.cstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/src/const.cstub -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/src/const.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/src/const.def -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/src/gen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/src/gen.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/src/socket.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/addrinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/addrinfo.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/basicsocket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/basicsocket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/ipsocket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/ipsocket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/socket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/socket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/sockettest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/sockettest.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/tcpsocket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/tcpsocket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/udpsocket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/udpsocket.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-socket/test/unix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-socket/test/unix.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-sprintf/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-sprintf/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-sprintf/mrblib/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-sprintf/mrblib/string.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-sprintf/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-sprintf/src/kernel.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-sprintf/src/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-sprintf/src/sprintf.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-sprintf/test/sprintf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-sprintf/test/sprintf.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-string-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-string-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-string-ext/mrblib/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-string-ext/mrblib/string.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-string-ext/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-string-ext/src/string.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-string-ext/test/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-string-ext/test/string.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-struct/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-struct/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-struct/mrblib/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-struct/mrblib/struct.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-struct/src/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-struct/src/struct.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-struct/test/struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-struct/test/struct.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-symbol-ext/src/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-symbol-ext/src/symbol.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-test/README.md -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-test/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-test/driver.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-test/init_mrbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-test/init_mrbtest.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-test/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-test/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-time/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-time/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-time/mrblib/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-time/mrblib/time.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-time/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-time/src/time.c -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-time/test/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-time/test/time.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb -------------------------------------------------------------------------------- /src/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/00class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/00class.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/10error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/10error.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/array.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/compar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/compar.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/enum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/enum.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/float.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/hash.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/init_mrblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/init_mrblib.c -------------------------------------------------------------------------------- /src/mruby/mrblib/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/kernel.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/mrblib.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/mrblib.rake -------------------------------------------------------------------------------- /src/mruby/mrblib/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/numeric.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/range.rb -------------------------------------------------------------------------------- /src/mruby/mrblib/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mrblib/string.rb -------------------------------------------------------------------------------- /src/mruby/mruby-source.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/mruby-source.gemspec -------------------------------------------------------------------------------- /src/mruby/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/array.c -------------------------------------------------------------------------------- /src/mruby/src/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/backtrace.c -------------------------------------------------------------------------------- /src/mruby/src/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/class.c -------------------------------------------------------------------------------- /src/mruby/src/codedump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/codedump.c -------------------------------------------------------------------------------- /src/mruby/src/compar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/compar.c -------------------------------------------------------------------------------- /src/mruby/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/crc.c -------------------------------------------------------------------------------- /src/mruby/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/debug.c -------------------------------------------------------------------------------- /src/mruby/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/dump.c -------------------------------------------------------------------------------- /src/mruby/src/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/enum.c -------------------------------------------------------------------------------- /src/mruby/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/error.c -------------------------------------------------------------------------------- /src/mruby/src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/error.h -------------------------------------------------------------------------------- /src/mruby/src/etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/etc.c -------------------------------------------------------------------------------- /src/mruby/src/ext/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mruby/src/fmt_fp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/fmt_fp.c -------------------------------------------------------------------------------- /src/mruby/src/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/gc.c -------------------------------------------------------------------------------- /src/mruby/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/hash.c -------------------------------------------------------------------------------- /src/mruby/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/init.c -------------------------------------------------------------------------------- /src/mruby/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/kernel.c -------------------------------------------------------------------------------- /src/mruby/src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/load.c -------------------------------------------------------------------------------- /src/mruby/src/mruby_core.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/mruby_core.rake -------------------------------------------------------------------------------- /src/mruby/src/numeric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/numeric.c -------------------------------------------------------------------------------- /src/mruby/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/object.c -------------------------------------------------------------------------------- /src/mruby/src/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/opcode.h -------------------------------------------------------------------------------- /src/mruby/src/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/pool.c -------------------------------------------------------------------------------- /src/mruby/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/print.c -------------------------------------------------------------------------------- /src/mruby/src/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/proc.c -------------------------------------------------------------------------------- /src/mruby/src/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/range.c -------------------------------------------------------------------------------- /src/mruby/src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/state.c -------------------------------------------------------------------------------- /src/mruby/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/string.c -------------------------------------------------------------------------------- /src/mruby/src/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/symbol.c -------------------------------------------------------------------------------- /src/mruby/src/value_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/value_array.h -------------------------------------------------------------------------------- /src/mruby/src/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/variable.c -------------------------------------------------------------------------------- /src/mruby/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/version.c -------------------------------------------------------------------------------- /src/mruby/src/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/src/vm.c -------------------------------------------------------------------------------- /src/mruby/tasks/benchmark.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/benchmark.rake -------------------------------------------------------------------------------- /src/mruby/tasks/gitlab.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/gitlab.rake -------------------------------------------------------------------------------- /src/mruby/tasks/libmruby.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/libmruby.rake -------------------------------------------------------------------------------- /src/mruby/tasks/mrbgems.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/mrbgems.rake -------------------------------------------------------------------------------- /src/mruby/tasks/toolchains/android.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/toolchains/android.rake -------------------------------------------------------------------------------- /src/mruby/tasks/toolchains/clang.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/toolchains/clang.rake -------------------------------------------------------------------------------- /src/mruby/tasks/toolchains/gcc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/toolchains/gcc.rake -------------------------------------------------------------------------------- /src/mruby/tasks/toolchains/openwrt.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/toolchains/openwrt.rake -------------------------------------------------------------------------------- /src/mruby/tasks/toolchains/visualcpp.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/tasks/toolchains/visualcpp.rake -------------------------------------------------------------------------------- /src/mruby/test/assert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/assert.rb -------------------------------------------------------------------------------- /src/mruby/test/bintest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/bintest.rb -------------------------------------------------------------------------------- /src/mruby/test/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/report.rb -------------------------------------------------------------------------------- /src/mruby/test/t/argumenterror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/argumenterror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/array.rb -------------------------------------------------------------------------------- /src/mruby/test/t/basicobject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/basicobject.rb -------------------------------------------------------------------------------- /src/mruby/test/t/bs_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/bs_block.rb -------------------------------------------------------------------------------- /src/mruby/test/t/bs_literal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/bs_literal.rb -------------------------------------------------------------------------------- /src/mruby/test/t/class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/class.rb -------------------------------------------------------------------------------- /src/mruby/test/t/codegen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/codegen.rb -------------------------------------------------------------------------------- /src/mruby/test/t/comparable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/comparable.rb -------------------------------------------------------------------------------- /src/mruby/test/t/ensure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/ensure.rb -------------------------------------------------------------------------------- /src/mruby/test/t/enumerable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/enumerable.rb -------------------------------------------------------------------------------- /src/mruby/test/t/exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/exception.rb -------------------------------------------------------------------------------- /src/mruby/test/t/false.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/false.rb -------------------------------------------------------------------------------- /src/mruby/test/t/float.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/float.rb -------------------------------------------------------------------------------- /src/mruby/test/t/gc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/gc.rb -------------------------------------------------------------------------------- /src/mruby/test/t/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/hash.rb -------------------------------------------------------------------------------- /src/mruby/test/t/indexerror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/indexerror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/integer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/integer.rb -------------------------------------------------------------------------------- /src/mruby/test/t/iterations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/iterations.rb -------------------------------------------------------------------------------- /src/mruby/test/t/kernel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/kernel.rb -------------------------------------------------------------------------------- /src/mruby/test/t/lang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/lang.rb -------------------------------------------------------------------------------- /src/mruby/test/t/literals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/literals.rb -------------------------------------------------------------------------------- /src/mruby/test/t/localjumperror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/localjumperror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/methods.rb -------------------------------------------------------------------------------- /src/mruby/test/t/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/module.rb -------------------------------------------------------------------------------- /src/mruby/test/t/nameerror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/nameerror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/nil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/nil.rb -------------------------------------------------------------------------------- /src/mruby/test/t/nomethoderror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/nomethoderror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/numeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/numeric.rb -------------------------------------------------------------------------------- /src/mruby/test/t/object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/object.rb -------------------------------------------------------------------------------- /src/mruby/test/t/proc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/proc.rb -------------------------------------------------------------------------------- /src/mruby/test/t/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/range.rb -------------------------------------------------------------------------------- /src/mruby/test/t/rangeerror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/rangeerror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/regexperror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/regexperror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/runtimeerror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/runtimeerror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/standarderror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/standarderror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/string.rb -------------------------------------------------------------------------------- /src/mruby/test/t/superclass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/superclass.rb -------------------------------------------------------------------------------- /src/mruby/test/t/symbol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/symbol.rb -------------------------------------------------------------------------------- /src/mruby/test/t/syntax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/syntax.rb -------------------------------------------------------------------------------- /src/mruby/test/t/true.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/true.rb -------------------------------------------------------------------------------- /src/mruby/test/t/typeerror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/typeerror.rb -------------------------------------------------------------------------------- /src/mruby/test/t/unicode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/test/t/unicode.rb -------------------------------------------------------------------------------- /src/mruby/travis_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/src/mruby/travis_config.rb -------------------------------------------------------------------------------- /task/dovecot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/task/dovecot.rb -------------------------------------------------------------------------------- /task/lib/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/task/lib/context.rb -------------------------------------------------------------------------------- /task/spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsumotory/dovecot-mruby-plugin/HEAD/task/spec.rb --------------------------------------------------------------------------------